DidSelectRowAtIndexPath 使用故事板

Posted

技术标签:

【中文标题】DidSelectRowAtIndexPath 使用故事板【英文标题】:DidSelectRowAtIndexPath using a story Board 【发布时间】:2014-02-23 20:04:34 【问题描述】:

在我的应用程序中,我使用以下 didSelectRowAtIndexPath 方法转到 viewController,但我在故事板中工作,并引发异常,告诉我找不到 nib 文件。我应该如何更改打开新viewController的方法无异常?:

//link to the next view

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

    EmpresasTableViewController *detailViewController = [[EmpresasTableViewController alloc] initWithNibName:@"EmpresasTableViewController" bundle:nil];
    detailViewController.title =[[categorias objectAtIndex:indexPath.row]objectForKey:@"idCategoria"];
    detailViewController.categoriaDescription = [categorias objectAtIndex:indexPath.row];
    [self.navigationController pushViewController:detailViewController animated:YES];

【问题讨论】:

您必须在情节提要中为您的 ViewController 创建一个标识符(例如,detailViewController),然后像这样实例化您的 EmpresasTableViewController EmpresasTableViewController *detailViewController =[self.storyboard instantiateViewControllerWithIdentifier:@"detailViewController"];跨度> @chawki,请将您的评论放在答案中,您的评论有效...谢谢。 【参考方案1】:

您必须在情节提要中为您的 ViewController 创建一个标识符(例如,detailViewController),然后像这样实例化您的 EmpresasTableViewController

EmpresasTableViewController *detailViewController =[self.storyboard instantiateViewControllerWithIdentifier:@"detailViewController"];

希望对你有帮助

【讨论】:

以上是关于DidSelectRowAtIndexPath 使用故事板的主要内容,如果未能解决你的问题,请参考以下文章

我的 didSelectRowAtIndexPath 没有被调用

didSelectRowAtIndexPath 没有被调用?

tableView - didSelectRowAtIndexPath 未调用

快速:didSelectRowAtIndexPath

我可以麻烦UITableViewDelegate的didSelectRowAtIndexPath:吗?

DidSelectRowAtIndexPath 使用故事板