Core Text is the modern text layout and rendering framework on Apple's Mac OS X and iOS operating systems. On both platforms, it integrates with the Foundation framework's NSAttributedString and Core Foundation's CFAttributedString. On Mac OS X, Core Text classes are also toll-free bridged with ...
10
votes
3answers
4k views
Core Text tutorial
is there any nice CoreText tutorial for iPad out there? ... I found just few exampes in SDK documentation ... thanks
9
votes
5answers
697 views
CoreText crashes when run in multiple threads
I have a very weird problem with core text, which sometimes randomly and sometimes reproducibly crashes my application. I use it to lay out and render a couple of pages. I do this asynchronously in ...
9
votes
2answers
3k views
Convert HTML to NSAttributedString in iOS
I am using a instance of UIWebView to process some text and color it correctly, it gives the result as HTML but rather than displaying it in the UIWebView I want to display it using Core Text with a ...
8
votes
2answers
565 views
NSBackgroundColorAttributeName-like attribute in NSAttributedString on iOS?
I was planning on using NSAttributedString to highlight portions of strings with the matching query of a user's search. However, I can't find an iOS equivalent of ...
7
votes
2answers
2k views
Core text exactly same as UITextView text format?
I'm trying to set up a CTFrame that exactly matches my UITextView's text format in iPad.
First of all, I converted UITextView's text to an attributed string. Then I set up a width and a height of ...
7
votes
4answers
1k views
iPhone CoreText: Find the pixel coordinates of a substring
Here's a screenshot of the twitter app for reference: http://screencast.com/t/YmFmYmI4M
What I want to do is place a floating pop-over on top of a substring in an NSAttributedString that could span ...
7
votes
1answer
5k views
Can I use NSAttributedString in Core Text in iOS?
I'm trying to work out how to take an NSAttributedString and use it in Core Text on the iPad. I watched one of the WWDC videos (110) which has slides (but no source code) and it describes how to ...
7
votes
4answers
2k views
Rendering a Long Document on iPad
I'm implementing a document viewer with highlighting/annotation capabilities for a custom document format on iPad. The documents are kind of long (100 to 200 pages, if printed on paper) and I've had a ...
6
votes
3answers
355 views
Overriding Emoji Graphics
I want to override the emoji icons with my own custom graphics (only within my app).
From what I've read so far, one possible solution is to create a custom font extension which overrides the ...
6
votes
1answer
771 views
How do you change the letter-spacing/tracking in core text?
This could probably also be asked as "Is kCTKernAttributeName a misnomer?"
I need to change the letter spacing/tracking of some text in iOS. (The font I'm using is a little too tight at small sizes.) ...
6
votes
4answers
728 views
Scaling text to fit on iPhone
I'm having a bit of trouble working out the "best" way to render text in my application.
My main view consists of a text view, and the design of the application dictates a few things:
The (font) ...
6
votes
2answers
5k views
Draw underlined / strikethrough text ( MULTILINE STRING )?
I have to draw underlined-multiline text with all types of text alignment. I have searched on forums and got some results like:
...
5
votes
3answers
734 views
Core Text Performance
I am seeing some performance issues with Core Text when it is run on the original iPad.
I have created an editable view using Core Text and the UITextInput protocol which is based around OmniGroup's ...
5
votes
2answers
411 views
Does CoreText support Small Caps?
Does CoreText have any facility for selecting a SmallCaps variant of a font, or for synthesizing small caps if the font doesn't have that feature? I can't find anything in the CoreText documentation ...
5
votes
1answer
1k views
How can I fake superscript and subscript with Core Text and an Attributed String?
I'm using an NSMutableAttribtuedString in order to build a string with formatting, which I then pass to Core Text to render into a frame. The problem is, that I need to use superscript and subscript. ...
5
votes
1answer
525 views
CoreText mapping characters
I have some in a touch handler which responds to a tap on a view that I've drawn some attributed text in. through this, I've got to the point where I have a CTRunRef (and the associated line) as well ...
5
votes
2answers
1k views
Finding text's bounding rect in Core Text
I'm trying to find the boundaries of a line of text in Core Text. For simplicity, assume it has a single character.
At the moment I'm using the following method:
line = ...
5
votes
2answers
1k views
How can you load a font (TTF) from a file using Core Text?
Prior to OSX 10.6, ATSFontActivateFromFileSpecification/ATSFontActivateFromFileReference were available and could be used to load a font from a file. I can't find anything similar in Core Text.
4
votes
1answer
376 views
Problems of CTLineGetTypographicBounds
The code is extracted from SimpleTextInput sampe code, with a bit modification.
Create the frame:
self.font = [UIFont systemFontOfSize:18.f];
CTFontRef ctFont = CTFontCreateWithName((CFStringRef) ...
4
votes
1answer
290 views
CoreText rendering text glitch
I am working on a new app. I render different documents from an NSAttributedString using Core Text. I am having trouble with strange glitches in the rendering of the text. It doesn't happen with ...
4
votes
4answers
1k views
NSAttributedString and Links on iOS
I am trying to add a hyperlink to certain parts of my text which is being handled and drawn using CoreText.
According to Apple's docs on CoreText I should be using addAttribute:NSLinkAttributeName ...
4
votes
2answers
2k views
How does line spacing work in Core Text? (and why is it different from NSLayoutManager?)
I'm trying to draw text using Core Text functions, with a line spacing that's as close as possible to what it would be if I used NSTextView.
Take this font as an example:
NSFont *font = [NSFont ...
4
votes
1answer
885 views
Setting the background colour/highlight colour for a given string range using Core Text
I have some text laid out using Core Text in my iPhone app. I'm using NSAttributedString to set certain styles within the text for given ranges.
I can't seem to find an attribute for setting a ...
4
votes
1answer
1k views
CTFramesetterSuggestFrameSizeWithConstraints sometimes returns incorrect size?
In the code below, CTFramesetterSuggestFrameSizeWithConstraints sometimes returns a CGSize with a height that is not big enough to contain all the text that is being passed into it. I did look at this ...
4
votes
1answer
436 views
Why is this an over-release of CTFrame
Working with some CoreText code on iOS and I am confused as to why this is an overrelease of the CTFrame. I have confirmed it is an over-release but I am baffled because it is created with a create ...
4
votes
5answers
3k views
Core Text's CTFramesetterSuggestFrameSizeWithConstraints() returns incorrect size everytime
According to the docs, CTFramesetterSuggestFrameSizeWithConstraints () "determines the frame size needed for a string range".
Unfortunately the size returned by this function is never accurate. Here ...
3
votes
1answer
114 views
CATextLayer wrapped sizeToFit?
If I set textLayer.wrapped = YES, how do I resize textLayer to contain the wrapped text? I.e., how do I get the new height of the textLayer?
Basically, I want something like -[UILabel sizeToFit].
3
votes
2answers
334 views
Core Text's Paragraph's space is too huge on iOS
I used CoreText to render text as below:
Another very common typesetting operation is drawing a single line of text to use as a label for a user-interface element.
In Core Text this requires ...
3
votes
1answer
288 views
Cocoa Text - refreshing text on-the-fly
In an app I'm working on, the user inputs plain text, and the app reformats the text by transforming it to an NSAttributedString, and displays it. This all happens live.
Currently, I'm doing the ...
3
votes
1answer
166 views
Memory Leaks when calling some CTFunctions in iPhone
I write a function to calculate the end index of attributtedString in a rect,
But it seems some memory leak,
Please help me to fix it.
CTFramesetterRef framesetter = ...
3
votes
1answer
940 views
CGContextShowTextAtPoint and white space
Why is it that the following code ignores the white-space?
UIColor *textColor = [UIColor colorWithRed:153.0/255.0 green:102.0/255.0 blue:51.0/255.0 alpha:1.0];
CGContextSetFillColorWithColor(ctx, ...
3
votes
1answer
190 views
Crazy Font Issue with NSTextView
I'm knee deep in font metrics with NSTextView at the moment. I was hoping a developer here could shed some light as to what's going on.
With Myriad Pro in a default NSTextView (dragged from IB and ...
3
votes
1answer
890 views
Core Text View has black background color
I'm having a UIView that renders some text using CoreText,everything works fine,
except for the fact that the entire view has black background color.
I've tried the most basic solutions like
[self ...
3
votes
2answers
823 views
Core Text - Get Pixel Coordinates from NSRange
How would I get a CGRect from an NSRange for text rendered with Core Text?
I am using Core Text with an NSAttributedString.
3
votes
1answer
177 views
Linker can't find CTFontCreateWithNameAndOptions
I am trying to use CTFontCreateWithNameAndOptions() from CoreText and the linker is saying "Symbol(s) not found", specifically for _CTFontCreateWithNameAndOptions. I added CoreText.framework and am ...
3
votes
2answers
683 views
Core Text: Render to an Odd Shape
I am trying to render text to a shape that isn't a rectangle. The following code works when I add a rectangular path but not when I add an elliptical path. Ultimately, I'd like to draw to any path ...
3
votes
1answer
1k views
How to split long NSString into pages
I have a long NSString I want to display over a couple of pages.
But to do this, I need to find out how much text will actually fit on the page.
[NSString sizeWithFont: ...] Is not enough, it will ...
3
votes
1answer
1k views
How to use CTRunDelegate in iPad?
I am a developing an iPad application in which i have to use CTRunDelegate. I have defined all the the callbacks that are required viz CTRunDelegateGetAscentCallback , CTRunDelegateGetDescentCallback ...
2
votes
1answer
85 views
Monotouch Custom Font with Attributes
How can i specify font bold/italic etc. properties in monotouch?
Actually possible in native library
http://www.freetimestudios.com/2010/09/20/ipad-and-ios-4-custom-font-loading/
NSDictionary ...
2
votes
2answers
164 views
Memory usage grows with CTFontCreateWithName and CTFramesetterRef
I'm writing an IOS program which uses custom fonts (CTFontManagerRegisterFontsForURL). I load the font, add it as a string attribute, create a framesetter, then a frame, and draw it to a context.
I ...
2
votes
0answers
102 views
Implementing accessibility for custom text editor
I've created a custom rich text editor using Core Text and conforming to the UITextInput protocol. I'm trying to figure out how to make it accessible to VoiceOver.
From my reading of the ...
2
votes
1answer
266 views
Paragraph justify with CoreText
I have the following code to format a paragraph of text with CoreText.
(...)
CTFontRef fontRef = CTFontCreateWithName((CFStringRef)fontName,
[self.fontSize ...
2
votes
1answer
237 views
Dynamically change view height with Core Text
I have a view in which I want to draw a text with Text Core (on the iPad). When text grown up I'd like to increase a height of the view, but I don't know how to calculate needed height of frame.
I use ...
2
votes
1answer
170 views
CGPathRef from text
How can we get path of particular string?
I just found out that CTFontCreatePathForGlyph will give CGPathRef , but its will be the outline of text .
for example the letter 'O' the path i get from the ...
2
votes
1answer
572 views
How to draw outline text on OpenGL ES context in iOS?
I'm trying to draw text on OpenGL ES context on iOS platform. I have to draw rich-text with outline font (TTF, OTF or others)
I know two outline text drawing library.
CoreText
FreeType
There is a ...
2
votes
1answer
525 views
How to highlight CoreText with changing highlight colors?
I have a subclass of UIView that implements code to draw CoreText. In the application, that UIView is drawn inside a UIScrollView. Here is the code that I currently use in drawRect: to render an ...
2
votes
1answer
208 views
Using iOS CoreText APIs that don't use a CGContextRef in a non-main Thread
The iOS APIs don't mention threading restrictions on CoreText APIs. To what extent are they safe to use on non-main threads when calling functions that don't use a CGContextRef?
Specifically, I'm ...
2
votes
1answer
711 views
Creating PDF using Core Text - what's the meaning of / fix for 'unsupported 'Zapf' version 00020000' error message
I am using Core Text, in particular CTFramesetter, to create a nice text layout on a PDF. It all works fine, but on the first call I get the following error message on the console:
<Error>: ...
2
votes
1answer
400 views
Get unicode character by glyph index in a CTFontRef or CGFontRef object
The CTFontRef provides excellent method such as CTFontGetGlyphsForCharacters for mapping character(s) to glyph(s). My question is, is there any method for invert mapping? That is say, can I get ...
2
votes
1answer
784 views
iOS Formatted Text
If I want formatted text (variations on size, position of certain text elements, etc) but don't want to use UIWebView, is Core Text my only remaining option?
I'm shying away from UIWebView primarily ...