美文网首页
UISearchController 的使用

UISearchController 的使用

作者: 无法触碰 | 来源:发表于2016-12-08 09:31 被阅读33次

//创建,ResultsController可以为nil,即当前VC操作

self.searchController = [[UISearchController alloc] initWithSearchResultsController:[[SearchTableViewController alloc] init]];

self.searchController.searchBar.placeholder =@"在名单里查找";

//searchBar背景颜色

self.searchController.searchBar.barTintColor = RGBA(240, 240, 240, 1);

self.searchController.searchBar.tintColor = [UIColor blackColor];

self.searchController.searchResultsUpdater = self;

//有导航栏的时候,点击搜索框的时候可以不让导航栏消失

self.searchController.hidesNavigationBarDuringPresentation = NO;//禁止向上移动

self.searchController.searchBar.frame = CGRectMake(self.searchController.searchBar.frame.origin.x,

self.searchController.searchBar.frame.origin.y,

self.searchController.searchBar.frame.size.width, 44.0);

self.tableView.tableHeaderView = self.searchController.searchBar;

相关文章

网友评论

      本文标题:UISearchController 的使用

      本文链接:https://www.haomeiwen.com/subject/ssnjmttx.html