I am trying to set the textColor
of a UITextView
by assigning it a value.
Earlier in the program I have
textView.textColor = 0x000000;
but later, when I have
textView.textColor = 0x888888;
a fatal error pops up saying: "Implicit conversion of 'int' to 'UIColor *' is disallowed with ARC".
How do I convert my int to a UIColor to properly set the text color? Why did it work with 0x000000 and not 0x888888?