我想创建UITableViewController的对象,并希望将值从ViewController传递给UITableViewController。但它给出的错误就像" UITableViewController不是键值超类的键值编码兼容。" 我尝试了这个,但没有得到帮助:
[[MytableViewController alloc] initWithNibName:[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"MytableViewController_identifier"] bundle:[NSBundle mainBundle]];
答案 0 :(得分:0)
只需使用
MytableViewController *mtvc = (MytableViewController *)[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"MytableViewController_identifier"];