I generate a rather complex NSAttributedString in my iOS 3.2 application (iPad), including formatting options of type CTParagraphStyleSetting, in particular with values for kCTParagraphStyleSpecifierMinimumLineHeight and kCTParagraphStyleSpecifierParagraphSpacing.

When I try to draw this attributed string into a non-rectangular CGPath, Core Text draws it but without the line spacing defined; that is, all text appears crammed in paragraphs without line spacing. Needless to say, it does not look as pretty as if the CGPath was simply defined using a single call to CGPathAddRect()!

Is there any setting I can specify (to my CTFramesetterRef or to the CTFrameRef associated to the culprit CGPath) to avoid losing all line height information?

Thanks!

link|improve this question
just a question: have you managed to draw almost correctly (except from lineheight) text on a non-rectangular cgpath? – Fossli Nov 10 '10 at 9:39
yes, you can create a CGPath with any shape you want, and the text is drawn inside - albeit without correct line heights. It's really cool :) – akosma Nov 16 '10 at 21:51
feedback

1 Answer

up vote 3 down vote accepted

The CoreText programming guide intimates that only a rectangular CGPath is allowed:

http://developer.apple.com/library/ios/#documentation/StringsTextFonts/Conceptual/CoreText_Programming/Overview/Overview.html#//apple_ref/doc/uid/TP40005533-CH3-SW1

link|improve this answer
2  
The thing is, you actually can draw an NSAttributedString on non-rectangular shapes, but some of its properties are lost when you do so. In my case, line heights and paragraph settings are lost... and I would like to know if there is a way to solve this problem. – akosma Jan 4 '11 at 19:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.