我在集成 iOS 8 时收到此警告UISearchController
。我的项目中没有使用情节提要。
Presenting view controllers on detached view controllers is discouraged when using UISeachController iOS 8
我在集成 iOS 8 时收到此警告UISearchController
。我的项目中没有使用情节提要。
Presenting view controllers on detached view controllers is discouraged when using UISeachController iOS 8
你需要实现 UISearchControllerDelegate
这是一个例子
# pragma mark - UISearchControllerDelegate
- (void)presentSearchController:(UISearchController *)searchController
{
[self.navigationController presentViewController:searchController animated:YES completion:nil];
}
如果您还有其他问题,请告诉我。