MLPAutoCompleteTextField
MLPAutoCompleteTextField copied to clipboard
Suggestions Drop-down shows behind
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.
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];