I'm trying to set the cursor color of a UITextView based on a user's preferences. They select what color they want with a button.
By default, the textview's cursor color is white. When the user presses the button, it might change to green:
[_textView setTintColor:[UIColor greenColor]];
[_textView setTextColor:[UIColor greenColor]];
I am sure that this method call is working because the textview's text changes color, just not the cursor...