代码改变世界

iOS 8.0后 UISearchController pop不隐藏

2016-08-31 15:43  marysneaker  阅读(1321)  评论(0编辑  收藏  举报
self.definesPresentationContext = YES; ----- _searchController = [[UISearchController alloc]initWithSearchResultsController:nil]; _searchController.dimsBackgroundDuringPresentation = NO; _searchController . hidesNavigationBarDuringPresentation = NO; _searchController.searchBar.frame = CGRectMake(self.searchController.searchBar.frame.origin.x, self.searchController.searchBar.frame.origin.y, self.searchController.searchBar.frame.size.width, 44.0); _searchController.searchBar.placeholder=@"搜索店铺地址"; _searchController.searchBar.returnKeyType = UIReturnKeySearch; _searchController.searchBar.delegate = self;; _tbvw.tableHeaderView = self.searchController.searchBar; self.definesPresentationContext = YES;