I am trying to set the textColor of a UITextView by assigning it a value.
textColor
UITextView
Earlier in the program I have
textView.textColor
You can do this by following these steps:
Do convert hex value to RGB use HexToRGB.
And then change the text color of your textview by doing this :
textview.textColor = [UIColor colorWithRed:244/255.00f green:133/255.00f blue:116/255.00f alpha:1.0f]; // values are just an example