Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Multiple colours in an NSString or NSMutableStrings are not possible. So I've heard a little about the NSAttributedString which was introduced with the iPad SDK 3.2 (or around 3.2) and is available on the iPhone as of iPhone SDK 4.0 beta.

I would like to have a string that has three colours.

The reason I don't use 3 separate NSStrings, is because the length of each of the three NSAttributedString substrings will be changing often and so I would prefer not to use any calculations to re-position 3 separate NSString objects.

If it's possible using NSAttributedString how do I make the following - (if not possible with NSAttributed string how would you do it):

alt text

Edit: Remember, @"first", @"second" and @"third" will be replaced by other strings at any time. So using hardcoded NSRange values won't work.

share|improve this question

2 Answers

up vote 112 down vote accepted

When building attributed strings, I prefer to use the mutable subclass, just to keep things cleaner.

That being said, here's how you create a tri-color attributed string:

NSMutableAttributedString * string = [[NSMutableAttributedString alloc] initWithString:@"firstsecondthird"];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0,5)];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(5,6)];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(11,5)];

typed in a browser. caveat implementor

Obviously you're not going to hard-code in the ranges like this. Perhaps instead you could do something like:

NSDictionary * wordToColorMapping = ....;  //an NSDictionary of NSString => UIColor pairs
NSMutableAttributedString * string = [[NSMutableAttributedString alloc] initWithString:@""];
for (NSString * word in wordToColorMapping) {
  UIColor * color = [wordToColorMapping objectForKey:word];
  NSDictionary * attributes = [NSDictionary dictionaryWithObject:color forKey:NSForegroundColorAttributeName];
  NSAttributedString * subString = [[NSAttributedString alloc] initWithString:word attributes:attributes];
  [string appendAttributedString:subString];
  [subString release];
}

//display string
share|improve this answer
18  
+1 for caveat implementor. WIN – Jonathan Sterling Jan 14 '11 at 18:57
4  
Can you please let me know how to assign attributed string to the label? – Pooja Bohora Dec 21 '11 at 8:57
5  
@SyedFarazHaiderZaidi There's nothing built-in to UIKit that accepts an NSAttributedString. However, there are open source things, such as OHAttributedLabel. – Dave DeLong Feb 16 '12 at 15:51
4  
If you're using CoreText.framework on iOS, you'll probably want the constant kCTForegroundColorAttributeName rather than NSForegroundColorAttributeName. – Phil Calvin May 18 '12 at 3:12
12  
In iOS6, which was just released (so I can talk without NDA), you can do things like myLabel.attributedText = attributedString; It's about freaking time... I've been waiting for this feature for years. – Kevin Hoffman Sep 20 '12 at 15:08
show 7 more comments

The question is already answered... but I wanted to show how to add shadow and change the font with NSAttributedString as well, so that when people search for this topic they won't have to keep looking.

#define FONT_SIZE 20
#define FONT_HELVETICA @"Helvetica-Light"
#define BLACK_SHADOW [UIColor colorWithRed:40.0f/255.0f green:40.0f/255.0f blue:40.0f/255.0f alpha:1]

            NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
            paragraphStyle.alignment = NSTextAlignmentCenter;
            UIFont * labelFont = [UIFont fontWithName:FONT_HELVETICA size:FONT_SIZE];
            UIColor * labelColor = [UIColor colorWithWhite:1 alpha:1];
            NSShadow *shadow = [[NSShadow alloc] init];
            [shadow setShadowColor: BLACK_SHADOW];
            [shadow setShadowOffset:CGSizeMake (1.0, 1.0)];
            [shadow setShadowBlurRadius:1];
            NSString*THESTRING;
            THESTRING = @"mystring";                

            NSAttributedString *labelText = [[NSAttributedString alloc] initWithString:
            [NSString stringWithFormat:@"%@",THESTRING] attributes:@ {
            NSParagraphStyleAttributeName:paragraphStyle,
            NSFontAttributeName : labelFont,
            NSForegroundColorAttributeName : labelColor,
            NSShadowAttributeName : shadow }];
share|improve this answer

protected by Bavarious Oct 20 '11 at 6:25

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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