how to Change the color of text in UITextView ?
+2
A:
yourTextView.textColor = [UIColor redColor];
Looking up UITextView in the documentation gives this immediately. ;-)
Eiko
2010-10-14 10:00:49
Thanks , got it
rajivpradeep
2010-10-14 10:04:35
in XCode if you do `yourTextView.` and then press ESC then it will come up with a list of properties you can set. Its always best to have a look through this first, simple questions like this can be solved easily by just having a look first.
Thomas Clayson
2010-10-14 10:16:34