搜索栏取消按钮按下初始视图控制器

时间:2013-01-01 00:49:12

标签: ios uisearchbar segue uisearchbardisplaycontrol

我一直在寻找并且无法使其发挥作用。

TableviewcontrollerATableviewcontrollerB与搜索栏分隔为firstresponder

当用户点击取消时,我想返回TableviewcontrollerA

我在下面的方法中尝试了很多东西而没有运气。我错过了什么?

由于 BTW - segue是在IB上完成的,而不是代码

-(void) searchBarCancelButtonClicked:(UISearchBar *)searchBar{


}

1 个答案:

答案 0 :(得分:13)

-(void) searchBarCancelButtonClicked:(UISearchBar *)searchBar{
    [self.searchDisplayController setActive:NO animated:YES];
    self.navigationController popToViewController:UIViewControllerA animated:YES;
}