Yes, many people are saying about Rich Text in iphone ipad and many knows about NSAttributedString.

But how to use NSAttributedString please??? I searched for much time, no extract clues for this.

I know how to set up a NSAttributedString, then what should I do to display a text on iphone / ipad with rich text??

the official doc says it should be used with Core Text Framework, what does that mean?

Is there any simple ways like

NSAttributedString *str;
.....
UILabel *label;
label.attributedString = str;

Sorry guy, so many questions. Please do help.

link|improve this question

well, finally I used Three20 – Jack Oct 25 '10 at 17:09
The above answer is correct though. Code like that and ensure you add the CoreText framework to your linked frameworks. – Max Howell Oct 26 '10 at 12:07
Thanks, i left the correct answer to Wes – Jack Oct 27 '10 at 9:53
Three20 ooks like a pretty impressive library: github.com/facebook/three20 – David H Jul 12 '11 at 16:06
3  
Three20 is crap. – bandejapaisa Feb 12 at 0:10
show 2 more comments
feedback

3 Answers

up vote 33 down vote accepted

You should take a look at AliSoftware's OHAttributedLabel. It is a subclass of UILabel that draws an NSAttributedString and also provides convenience methods for setting the attributes of an NSAttributedString from UIKit classes.

From the sample provided in the repo:

#import "NSAttributedString+Attributes.h"
#import "OHAttributedLabel.h"

/**(1)** Build the NSAttributedString *******/
NSMutableAttributedString* attrStr = [NSMutableAttributedString attributedStringWithString:@"Hello World!"];
// for those calls we don't specify a range so it affects the whole string
[attrStr setFont:[UIFont systemFontOfSize:12]];
[attrStr setTextColor:[UIColor grayColor]];
// now we only change the color of "Hello"
[attrStr setTextColor:[UIColor redColor] range:NSMakeRange(0,5)];


/**(2)** Affect the NSAttributedString to the OHAttributedLabel *******/
myAttributedLabel.attributedText = attrStr;
// Use the "Justified" alignment
myAttributedLabel.textAlignment = UITextAlignmentJustify;
// "Hello World!" will be displayed in the label, justified, "Hello" in red and " World!" in gray.
link|improve this answer
There is no such thing as a UIAttributedLabel. I think what you're referring to is OHAttributedLabel. – Erik B Dec 28 '10 at 11:16
2  
It was renamed OHAttributedLabel in a commit in November 2010. I've updated my answer. – Wes Jan 9 '11 at 11:00
Thank you Wes! You and Olivier Halligon who wrote the code! Thank you! – DenNukem Feb 4 '11 at 18:52
Thanks @Wes for mentioning my class, and thanks @DenNukem for the credits... I wasn't aware it was so famous ;) Anyway, I did a lot of updates and fixes on this class since the original post, so don't forget to pull the github repo! – AliSoftware Jun 17 '11 at 21:29
I get an error on every single line of your code. According to the documentation non of the methods you provided exist in the actual class, I am confused : developer.apple.com/library/mac/#documentation/Cocoa/Reference/… – aryaxt Jun 29 '11 at 17:10
show 6 more comments
feedback

Is there any simple ways like

NSAttributedString *str;

UILabel *label;

label.attributedString = str;

Almost. Just use a CATextLayer. It has a string property that you can set to an NSAttributedString.

link|improve this answer
Could you be more specific, e.g. provide an example usage? – William Niu Apr 24 at 5:22
Yes, it's called my book, Programming iOS 5. Here's the code example from the book: github.com/mattneub/Programming-iOS-Book-Examples/blob/master/… – matt Apr 24 at 18:22
feedback

You should try TTTAttributedLabel. It's a drop-in replacement for UILabel that works with NSAttributedString and is performant enough for UITableViewCells.

link|improve this answer
This class is found in the Three20 library mentioned below. – David H Jul 12 '11 at 16:06
2  
No, this is not from three20 (note the 3 Ts) – vikingosegundo Jul 27 '11 at 0:23
feedback

Your Answer

 
or
required, but never shown

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