Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm not sure how to code this in objective c. Basically what I have is an array with various objects. One of these objects is called "difference" and it contains negative and positive values. I want to be able to read this object and based on the symbols, "+" & "-", I want to color the text green if it is positive and red if negative. Can someone please guide me in the right direction? Thanks.

share|improve this question
Are you able to iterate over an array? Also, are you aware of NSAttributedString: developer.apple.com/library/mac/#documentation/Cocoa/Reference/… ? – Ramy Al Zuhouri Jan 7 at 22:31
yes like: for (NSString* string in arrayOfStrings ){} – user1832095 Jan 7 at 22:42
Once you iterate over that array, if the item has "+" create an attributed string with green color, are you able to do that? – Ramy Al Zuhouri Jan 7 at 22:47
no, that's what I need help on, can you show me a code example? – user1832095 Jan 7 at 22:48
1  
What have you tried? – CodaFi Jan 7 at 22:58
show 1 more comment

closed as not a real question by Josh Caswell, ikinci viking, Carl Veazey, Ram kiran, user97693321 Jan 8 at 4:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Creating a NSAttributedString object

Ok so you need this method:

- (id)initWithString:(NSString *)aString attributes:(NSDictionary *)attributes;

Where the attributes are made of a dictionary where the keys contants can be found on the NSAttributedString Application Kit Additions Reference.

Now the key that you are looking for is named NSForegroundColorAttributeName, and the value should be the color that you want.

So for the green color:

NSAttributedString* attribuedString= [[NSAttributedString alloc]initWithString: someString attributes: @{ NSForegroundColorAttributeName : [UIColor greenColor] } ];

Now if you already have an attributed string you may consider getting the mutable copy of that attributed string and manually setting the attribute, then setting it as attributedText of a UILabel.

NSMutableAttributedString* attributedString= [yourLabel.attributedText mutableCopy];
[attributedString addAttribute: NSForegoundColorAttributeName value: [UIColor greenColor] range: NSMakeRange(0, attributedString.length) ];
yourLabel.attributedText= attributedString;
share|improve this answer
thank you, this is very helpful! – user1832095 Jan 8 at 14:39

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