ryuutatsuo
ryuutatsuo

Reputation: 4006

UISearchBar Flashes on exit search mode

I have a UISearchBar inside a UITableView. When I click on the UISearchBar it goes into the search mode and displays search results. However when exiting out of the search mode there is a black flash while it animates back to its original.

There is also a UINavigationBar above the UITableView which gets pushed offscreen when entering search mode. Not sure if that makes any difference.

I can't figure out what is causing it.

Upvotes: 1

Views: 799

Answers (2)

ryuutatsuo
ryuutatsuo

Reputation: 4006

Figured it out.

It was do to the UINavigationBar, in the storyboard iOS7 there is a checkbox for Navigation Bar Translucent. Once I checked it everything worked out perfectly.

Upvotes: 1

user2828120
user2828120

Reputation: 233

Try to use https://github.com/samvermette/SVPullToRefresh for animated show/hide top view in tableView. Customize - (void)setCustomView:(UIView *)view forState:(SVPullToRefreshState)state;

Upvotes: 0

Related Questions