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 only two lines of code, one to create the line object with an attributed string and another to draw the line into a graphic context.
but it shows how to create an attributes dictionary and use it to create.

obvious there're 3 paragraphs. and I use default CTParagraphStyleSetting so that the ParagraphSpacing and ParagraphSpacingBefore is set to 0 by default.

But the rendered result shows the space is too HUGE
rendered text with 3 paragraphs

Any idea to reduce the paragraph space?

link|improve this question

Are you drawing this yourself using the normal Core Text functions or are you using some other component (e.g EGOTextView)? – Joshua Aug 26 '11 at 16:03
@Joshua I just use normal Core Text functions on -DrawRect method. – xhan Aug 26 '11 at 16:08
Could you add the code that renders the following paragraph? There's a lot of stuff that could render the text like that – Pier-Olivier Thibault Sep 12 '11 at 15:36
feedback

2 Answers

u can try

kCTParagraphStyleSpecifierMinimumLineHeight
kCTParagraphStyleSpecifierMaximumLineHeight
kCTParagraphStyleSpecifierLineSpacing
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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