0

Is is possible to change the color or any custom features of the blinking insertion point without overwriting private methods (so that there's no issue with deploying to the app store) ?

To be clear, currently it's blinking blue, and I'd like to change it to white for my context, or even black, but not blue.

Till
  • 27,559
  • 13
  • 88
  • 122
Meshach
  • 315
  • 1
  • 2
  • 16

1 Answers1

0

Assuming that you are talking about UITextField or UITextView, change the object's tintColor property to the color you would like your cursor to be.

nanothread
  • 908
  • 3
  • 10
  • 25
  • Yeah, looks like this has been answered, here: http://stackoverflow.com/questions/11606007/change-uitextfield-and-uitextview-cursor-caret-color/18945907#18945907 – Meshach Jan 10 '14 at 01:25