Why does the UISearchBar appear to have a strange flash when navigating back?

﹥>﹥吖頭↗ 提交于 2019-12-08 15:58:23

问题


I've got a UISearchBar in my UINavigationItem's titleView associated with a UISearchController. When I navigate back, it appears to flash. Anyone seen this before?

vid of flash

@interface HNTileSearchViewController () <HNTileSearchResultsProtocol, SWRevealViewControllerDelegate, UISearchBarDelegate, HNSetSearchFiltersProtocol, HNKeywordResultsProtocol>
...
@property (nonatomic, strong) UISearchController *searchController;
@property (nonatomic, strong) UISearchBar * searchBarTop;
...
@end


@implementation HNTileSearchViewController
...
    - (void) customPreSetup {
        HNKeywordResultsTableViewController * searchResultsController = [self.storyboard instantiateViewControllerWithIdentifier:HNKeywordResultsTableViewControllerStoryboardIdentifier];
        searchResultsController.delegate = self;
        _searchController = [[UISearchController alloc] initWithSearchResultsController:searchResultsController];
        _searchController.searchResultsUpdater = searchResultsController;
        _searchController.hidesNavigationBarDuringPresentation = NO;
        _searchController.dimsBackgroundDuringPresentation = NO;
        _searchBarTop = _searchController.searchBar;
        _searchBarTop.delegate = self;
        _searchBarTop.placeholder = NSLocalizedString(@"Search heynay", nil);
        _searchBarTop.showsCancelButton = NO;
        _searchBarTop.showsScopeBar = NO;
        self.navigationItem.titleView = _searchBarTop;
        self.definesPresentationContext = YES;
    }

    - (void) viewDidLoad {
        [super viewDidLoad];
        [self customPreSetup];
        ...
    }
....
@end

回答1:


I had the same problem and I solved in two ways:

First, you can put the searchStyle to Prominent:

searchController.searchBar.searchBarStyle = .Prominent

I wrote it in Swift by the way, the problem with this solution is that the search icon and the text, and the placeholder has a darker color and if the background is a darker color it looks bad.

The second solution I found is this:

 navigationController!.navigationBar.translucent=false
 navigationController!.navigationBar.barTintColor=UIColor.redColor()

 searchController.searchBar.barTintColor=UIColor.redColor()
 searchController.searchBar.searchBarStyle = .Prominent
 searchController.searchBar.translucent=false

The key is that both the navigation bar and the search bar isn't translucent and that both have the same color.

I hope this helps you




回答2:


For me the case with blinking searchBar was caused by not setting the backgroundImage during searchBar setup.

Swift:

searchBar.backgroundImage = UIImage()



回答3:


The answer from @omarzl didn't work for me... But I found a little workaround. I am posting it here as an answer so maybe it will help someone.

It's very simple and written in Swift 3.0.

So to avoid the strange flash from the UISearchBar, I just hide it when the view disappears :

override func viewWillDisappear(_ animated: Bool) {

    searchBars.isHidden = true

}

... and make it visible again when the view reappears :

override func viewDidAppear(_ animated: Bool) {

    self.searchBars.isHidden = false

}

I know it is not really a solution, but a "workaround". However, it works and makes your app a little more beautiful than having this buggy UISearBar.



来源:https://stackoverflow.com/questions/31346715/why-does-the-uisearchbar-appear-to-have-a-strange-flash-when-navigating-back

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!