4

我一直在寻找,但无法使其工作。

TableviewcontrollerA使用搜索栏将 aTableviewcontrollerB设置为firstresponder

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

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

谢谢顺便说一句 - segue 是在 IB 上完成的,而不是代码

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


}
4

1 回答 1

13
-(void) searchBarCancelButtonClicked:(UISearchBar *)searchBar{
    [self.searchDisplayController setActive:NO animated:YES];
    self.navigationController popToViewController:UIViewControllerA animated:YES;
}
于 2013-01-01T01:40:52.477 回答