Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cursor visibility issue in ios7

Simply creating a UITextField in ios7 SDK but when I enter some input, text is shown UItextField but cursor isn't.

Any clue about what can be the problem?

like image 776
Kanhaiya Sharma Avatar asked Oct 30 '13 09:10

Kanhaiya Sharma


1 Answers

Change the tintColor of the UITextField with a cursor

  [mobileTextField setTintColor:[UIColor blueColor]];

if you are use the XIb please set the tin color of UITextField

enter image description here

Note :- This is working on IOS 7+

like image 169
Deepesh Avatar answered Oct 28 '22 13:10

Deepesh