ボタンなしでView Controllerをロードしたい。識別子を10に設定して使用しようとしました
if(...){
//load ViewController2
[[self storyboard] instantiateViewControllerWithIdentifier:@"10"];
}
しかし、何も起こりません。
この機能では、それも機能しs doesn
ます
UIViewController *vc = [[self storyboard] instantiateViewControllerWithIdentifier:@"10"];
[self.navigationController pushViewController:vc];
ここに私のプロジェクトがあり ます http://www.sendspace.com/file/kfjhd5
何が問題なの?