---
title: "CTGlyphInfoCreateWithGlyphName(_:_:_:)"
framework: coretext
role: symbol
role_heading: Function
path: "coretext/ctglyphinfocreatewithglyphname(_:_:_:)"
---

# CTGlyphInfoCreateWithGlyphName(_:_:_:)

Creates an immutable glyph info object with a glyph name.

## Declaration

```swift
func CTGlyphInfoCreateWithGlyphName(_ glyphName: CFString, _ font: CTFont, _ baseString: CFString) -> CTGlyphInfo?
```

## Parameters

- `glyphName`: The name of the glyph.
- `font`: The font to be associated with the returned CTGlyphInfo object.
- `baseString`: The part of the string the returned object is intended to override.

## Return Value

Return Value A valid reference to an immutable CTGlyphInfo object if glyph info creation was successful; otherwise, NULL.

## Discussion

Discussion This function creates an immutable glyph info object for a glyph name such as copyright using a specified font.

## See Also

### Creating GlyphInfo Objects

- [CTGlyphInfoCreateWithGlyph(_:_:_:)](coretext/ctglyphinfocreatewithglyph(_:_:_:).md)
- [CTGlyphInfoCreateWithCharacterIdentifier(_:_:_:)](coretext/ctglyphinfocreatewithcharacteridentifier(_:_:_:).md)
