2012-11-26 65 views
-1

我有一個UISplitViewController與XCode模板創建並使用StoryBoard。它工作正常,詳細顯示了masterView中的行選擇數據。UISplitViewController與故事板2級別TableView

我想在masterView中添加另一個tableview,使其具有2級的masterView。在第一個tableview中顯示項目0,項目1,項目2.然後當點擊其中一個時,在同一個MasterView中用其他行值推入另一個tableview。

感謝

回答

0

在MasterViewController.m,添加以下代碼。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    NewMasterViewController *masterViewController = [[NewMasterViewController alloc] init]; 
    [self.navigationController pushViewController:masterViewController animated:YES]; 
}