Cursor visibility issue in ios7

前端 未结 4 2005
野的像风
野的像风 2021-02-12 19:04

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

4条回答
  •  故里飘歌
    2021-02-12 19:49

    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+

提交回复
热议问题