如何将单击行导航到另一个 UITableView?
Posted
技术标签:
【中文标题】如何将单击行导航到另一个 UITableView?【英文标题】:How to navigate clicking row to another UITableView? 【发布时间】:2010-03-29 19:14:25 【问题描述】:我试图在单击行时显示详细的 UItable 视图。我用过
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
// Navigation logic may go here. Create and push another view controller.
// AnotherViewController *anotherViewController = [[AnotherViewController alloc] initWithNibName:@"AnotherView" bundle:nil];
photoListViewController = [[PhotoListViewController alloc]initWithNibName:@"PhotoListViewController" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:photoListViewController animated:YES];
[photoListViewController release];
// [self.navigationController pushViewController:anotherViewController];
// [anotherViewController release];
这个 PhotoListViewController 是一个空的 UITableViewController。据我所知 UITableViewCOntroller 实现了导航控制器,我不必创建导航控制器。但是当我单击行时,它不会导航到第二个视图。我必须在 nib 文件上建立一些连接吗?我只在 File->New->UIViewCOntroller 中创建了这个 PhotoListViewController 并选择了 UITableView。
编辑:已解决
【问题讨论】:
【参考方案1】:我解决了我的问题。我应该使用 UIAvigation 对象。我认为 UITable 有它但没有))
【讨论】:
以上是关于如何将单击行导航到另一个 UITableView?的主要内容,如果未能解决你的问题,请参考以下文章