I’m trying to assign blue text like this, exactly like this

I’m using my own text field.
In hex the color is #336699
I need to access my text color to this, I would have liked to use a UIColor but there doesn’t seem to be one.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
UIColorneeds it’s values in RGB/255.0f. You can find here a converter. In your case, your color is R:51, G:102, B:153.So the code to get your
UIColoris then: