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.
|
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.
|
Creating a NSAttributedString object Ok so you need this method:
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:
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.
|
|||
|
|