Reputation: 1
I have a UITextView and I need to show the autocorrection words suggested by apple at the top. Right now they are coming at the bottom and are hiding behind the editor. Any suggestions?
Upvotes: 0
Views: 56
Reputation: 382
Use this for the predictive text
[myTextField setAutocorrectionType:UITextAutocorrectionTypeYes];
Upvotes: 1