I\'m wondering about changing the color of the cursor / caret in a UITextField (And UITextView if its the same answer) in iOS. I\'ve seen answers f
UITextField
UITextView
A more general approach would be to set the UIView's appearance's tintColor.
UIColor *myColor = [UIColor purpleColor]; [[UIView appearance] setTintColor:myColor];
Makes sense if you're using many default UI elements.