我有搜索栏,点击搜索栏生病了得到故事板popover,popover有一个带推送视图控制器的搜索按钮, 现在问题是,点击搜索栏键盘'搜索'按钮,我需要在popover上获得推视图控制器
第一个视图控制器
在这里输入代码
- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
{
[searchBar resignFirstResponder];
secondViewController *secondView = [[secondViewController alloc] init];
[secondView.searchButton sendActionsForControlEvents: UIControlEventTouchUpInside];
}
第二个视图控制器
在这里输入代码
- (IBAction)searchButton:(id)sender {
UIViewController *thirdView=[self.storyboard instantiateViewControllerWithIdentifier:@"thirdViewController"];
[self.navigationController pushViewController:thirdView animated:YES];
}