tags:

views:

32

answers:

1

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
Thanks , got it
rajivpradeep
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