如果UISearchController进入编辑状态后,距离状态栏太近或者导航栏遮挡住20的解决办法:
重写下面的方法:
-(void)viewDidLayoutSubviews {
if(self.searchController.active){
self.searchController.searchBar.frame = CGRectMake(self.searchController.searchBar.frame.origin.x, 10, self.searchController.searchBar.frame.size.width, 44.0);
[UIView animateWithDuration:0.1 animations:^{
[self.view layoutIfNeeded];
[self.searchController.searchBar layoutIfNeeded];
}];
}
}
网友评论