我正在使用带有情节提要的 xcode 4.3。
这就是我如何调用我的 secong UIViewController,称为 BookMenuController
UIStoryboard* sb = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:[NSBundle mainBundle]];
BookMenuController* bookControll = [sb instantiateViewControllerWithIdentifier:@"contBook"];
bookControll.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:bookControll animated:YES];
在这种情况下如何传递参数?我想传递一个整数,但将来我想传递一个 NSMutableArray。
有什么想法吗 ?