我有名为“MainStoryboard_iPhone.storyboard”的故事板,它有 2 个视图。第一个视图有一个带有显示按钮的表格单元格。我可以将表格单元格拖放到其他视图并显示该视图,但是只有当用户单击附件按钮而不使用 segue 时,我才需要以编程方式执行此操作。2 个视图的名称分别是 RootViewController 和 ProviderLookupViewController。目前我已经尝试过此代码但不起作用,当我单击单元格上的附件按钮时会引发错误。注释行是我尝试过的其他内容
-(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
{
UIStoryboard* sb = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone"
bundle:nil];
// ProviderLookupViewController* vc = [sb instantiateViewControllerWithIdentifier:@"ProviderLookupViewController"];
UIViewController* vc = [sb instantiateViewControllerWithIdentifier:@"ProviderLookupViewController"];
[self presentModalViewController:vc animated:YES];
//[self.navigationController pushViewController:vc animated:YES];
}