【发布时间】:2014-12-11 17:52:20
【问题描述】:
我在导航栏中设置了我的搜索栏。激活后,它会动画并出现取消按钮。我正在尝试停止动画并防止出现取消按钮。我的故事板是在 navigationController 中设置的 tableviewController。
self.searchController = [[UISearchController alloc]initWithSearchResultsController:nil];
self.searchController.searchResultsUpdater = self;
self.searchController.dimsBackgroundDuringPresentation = NO;
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.navigationItem.titleView = self.searchController.searchBar;
[self.searchController.searchBar setShowsCancelButton:NO animated:NO];
【问题讨论】:
标签: ios navigationbar navigationcontroller searchbar