Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITextView and position of floating autocorrect window

I have a UITextView with autocorrection on. The view's height is about 30 pix. When autocorrect kicks in the autocorrect view is nearly invisible below the text. Is there a way to control the position of the small autocorrect window or insure it is the top layer so it is always visible and the user can easily see and interact with it?

like image 231
QBit Avatar asked Feb 17 '12 23:02

QBit


1 Answers

I discovered that setting the scrollEnabled to false on the UITextView the popup would always appear above the word being corrected.

like image 117
Tylerc230 Avatar answered Sep 20 '22 17:09

Tylerc230