当前位置:  开发笔记 > IOS > 正文

在基于导航的应用程序中加载UITableView的问题

如何解决《在基于导航的应用程序中加载UITableView的问题》经验,为你挑选了1个好方法。

在基于导航的应用程序中,当我尝试加载另一个已UITableView使用initWithNibName以下实现的视图时:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UIViewController *detailsViewController = [[UIViewController alloc] initWithNibName:@"bloop2ViewController" bundle:nil];
    [[self navigationController] pushViewController:detailsViewController animated:YES];
    [detailsViewController release];
}

点击UITableView单元格后我得到:

2009-06-13 11:44:41.089 Bloop[75227:20b] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key tableView.' 2009-06-13 11:44:41.092 Bloop[75227:20b] Stack: (
807902715, 2429103675, 808061681, 810717848, 810716389, 816538544, 807805711, 816533170, 816541363, 815230552, 815224116, 815223834, 815217291, 815258907, 815254969, 815262662, 815243017, 815265053, 815242666, 11044, 815018240, 815005661, 810768858, 807687328, 807683624, 839142449, 839142646, 814752238, 9088, 8942 )

但是当我UITableView在InterfaceBuilder中断开连接时,视图加载没有任何问题(除了没有办法将数据推入其中).

UITableView实现是正确的 - 我在一个新的XCode项目中尝试了它,它工作得很好.



1> nschmidt..:

错误消息表明您正在尝试在UIViewController类型的对象上设置属性"tableView",它没有.我只是猜测,但也许你的nib文件中有一个派生的视图控制器,它有属性tableView,但是你构造的不是派生对象,而是UIViewController.你应该试试:

MyTableViewController *detailsViewController = [[MyTableViewController alloc] initWithNibName:@"bloop2ViewController" bundle:nil];

推荐阅读
落单鸟人
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有