7

我有一个带有搜索栏和 tableview 的模态视图控制器,基本上是一个弹出式搜索框,使用弹出式 segue 呈现。在顶部它有一个带有取消按钮的 UISearchBar。我正在尝试使用该搜索栏上的取消按钮来关闭视图控制器。

我尝试了很多方法...

-(void) searchBarCancelButtonClicked:(UISearchBar *)searchBar
{
    [self dismissViewControllerAnimated:YES completion:nil];
}

[self.presentingViewController dismissViewControllerAnimated:YES completion:nil];

和委托方法沿线

[self.delegate dismissModalViewController:self]

-(void) dismissModalViewController:(UIViewController*) viewToDismiss
{
    [viewToDismiss dismissViewControllerAnimated:YES completion:nil];
}

我不知道 UISearchBar 是否有干扰,但这似乎是一个合理的假设。否则,这是一个常见的话题,我很抱歉问了一个以前可能已经回答过的问题,但我已经阅读了 fm 并在谷歌上搜索,直到我变蓝但仍然没有结果。

4

2 回答 2

16

我在 UIPopoverPresentationController 中遇到了同样的事情,我在其中使用 UISearchController 过滤表视图。

问题是第一次调用dismissViewController 时它会关闭UISearchController,但是对UI 没有任何影响,所以很容易认为什么都没发生。这是您提到的 UISearchBar 干扰。

一种解决方案是调用两次dismissViewController(我不喜欢这样),或者调用searchController.dismissViewController,然后调用self.dismissViewController。

斯威夫特 3 示例...

if searchController.isActive {
    searchController.dismiss(animated: true, completion: { 
        self.dismiss(animated: true) 
    })
} else {
    dismiss(animated: true)
}
于 2016-02-16T15:59:56.203 回答
-2

我遇到了同样的问题,似乎没有更好的方法来解决这个问题,这非常令人沮丧。我在关闭模态时这样做了,虽然不理想,但非常流畅:

if(self.searchController.isActive){
    [self.searchController dismissViewControllerAnimated:YES completion:^{
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(.35 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            [self.navigationController dismissViewControllerAnimated:YES completion:nil];
        });
    }];
}else{
    [self dismissViewControllerAnimated:YES completion:nil];
}
于 2016-03-02T02:59:45.377 回答