我有一个UIViewController
,我在其中添加了一个子类UITableView
作为子视图。
例如
@interface ViewController : UIViewController
@interface ItemList : UITableView
在ViewController
viewDidLoad
我创建一个ItemList
( itemList
) 对象并将其添加到viewcontroller
- (void)viewDidLoad {
...
[self.view addSubview:itemList];
}
其中didSelectRowAtIndexPath
一个我无权访问导航控制器,那么我如何将另一个ItemList
推到?UITableView
viewcontroller
navigationcontroller
@implementation ItemList
{
...
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[self.navigationController pushViewController:newViewControllerobject animated:YES];
}
}