14

Auto correction of UITextview is working perfectly in Iphone5s but it is getting hidden behind the keyboard in iphone 6

works as expected in iPhone 5s

works in iPhone 5s

But does not work in iphone 6

enter image description here

Is there any way to fix this in iphone 6

null pointer
  • 5,874
  • 4
  • 36
  • 66

1 Answers1

1

NO , go to property and change correction Default or Yes to NO

Programmatically Objective C:

[textview setSpellCheckingType:  UITextSpellCheckingTypeNo];

Swift :

 username.spellCheckingType = .No
slfan
  • 8,950
  • 115
  • 65
  • 78