我想没有按钮加载视图控制器。 我的标识符设置为10,并试图使用
if(...){
//load ViewController2
[[self storyboard] instantiateViewControllerWithIdentifier:@"10"];
}
但没有任何反应。
利用该功能s doesn
牛逼的工作太
UIViewController *vc = [[self storyboard] instantiateViewControllerWithIdentifier:@"10"];
[self.navigationController pushViewController:vc];
这里是我的progect http://www.sendspace.com/file/kfjhd5
什么问题?