Jz Chang
Jz Chang

Reputation: 13

iOS UISearchbar in UIToolbar, show search result not popover in iPad

I'm use iPad UISearchbar embed in UIToolbar, the search result will show in the UIPopover

but use iPhone, it's show in same table view

I want to search result show in the same table view, How can I do?

Thank You!

Upvotes: 1

Views: 432

Answers (2)

bob
bob

Reputation: 392

I had the issue too. What I do to fix it is instead of adding a UISearchBar in the UIToolBar via a UIBarButtomItem, I added the UISearchBar in a view (normal UIView) and added that view in the toolbar via the UIBarButtomItem. See the image below.

enter image description here

I don't know why, but this fix the issue.

Upvotes: 1

Shamsudheen TK
Shamsudheen TK

Reputation: 31311

Reload the TableView with Sorted items. Thats it.

Upvotes: 0

Related Questions