如何导航点击行到另一个UITableView?

时间:2010-03-29 19:14:26

标签: uitableview iphone-sdk-3.0 uinavigationcontroller

我试图在点击行时显示详细的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 个答案:

答案 0 :(得分:2)

我解决了我的问题。我应该使用UINAvigation对象。我认为UITable有它但是没有))