ストーリーボードにプログラムでviewcontrollerを表示しようとしています。以下のコードを使用していますが、機能していません。応答がありません...
- (void)buttonPressed
{
NSLog(@"called");
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil];
UINavigationController *vc = [sb instantiateViewControllerWithIdentifier:@"123"];
vc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self.navigationController presentModalViewController:vc animated:YES];
}
ここで何が欠けていますか?