sendActionsForControlEvents:来自另一个视图控制器无法正常工作

时间:2014-07-03 06:28:28

标签: xcode

我有搜索栏,点击搜索栏生病了得到故事板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];

}

0 个答案:

没有答案