Tripta mittal
Tripta mittal

Reputation: 1

Autocorrection words at the top of UITextView

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

Answers (1)

mukul
mukul

Reputation: 382

Use this for the predictive text

 [myTextField setAutocorrectionType:UITextAutocorrectionTypeYes];

Upvotes: 1

Related Questions