我正在使用Xcode5主詳細應用程序模板,我想要的是在splitviewcontroller
的detailviewcontroller
中顯示UITableView
。如何在SplitViewController的DetailViewController中創建tableViewcontroller?
將以下代碼放入viewDidLoad
中,我已以編程方式創建了uitableviewcontroller
。
UITableViewController *tableView = [[UITableViewController alloc]initWithStyle:UITableViewStylePlain];
[self.view addSubview:tableView.view];
它的工作,但如何實施UITableViewDatasource
和delegate
方法?
是否有任何其他方式來做到這一點.....例如使用故事板...你能提供一些鏈接 –
是的,你可以:http://highoncoding.com/Articles/851_Implementing_UISplitViewController_with_Storyboards.aspx – graver