MLPAutoCompleteTextField icon indicating copy to clipboard operation
MLPAutoCompleteTextField copied to clipboard

Suggestions Drop-down shows behind

Open burhanuddin353 opened this issue 7 years ago • 1 comments

simulator screen shot - iphone 7 - 2017-10-18 at 12 01 31

As you can see the suggestions drop-down is showing behind message view (shown by the red arrow). Can you fix it so that the drop-down, always shows at the top?

The MLPAutoCompleteTextField and the message UITextView, both are inside a StackView.

burhanuddin353 avatar Oct 18 '17 08:10 burhanuddin353

This is a few years old, but you have to take them out of the stackview and call this:

[[UIApplication sharedApplication].keyWindow bringSubviewToFront:textField];
[[UIApplication sharedApplication].keyWindow bringSubviewToFront:autoCompleteTableView];

danialtaghaddos avatar Dec 12 '19 08:12 danialtaghaddos