我有一个单一的视图应用程序,并希望在按下右侧的导航栏按钮时显示一个新的 ViewController。我用这段代码调用这个 VC:
- (IBAction)createEntryButton:(id)sender {
CreateEntryViewController *vc2 = [[CreateEntryViewController alloc] init];
[self presentViewController:vc2 animated:TRUE completion:nil];
}
然而,这个动画vc2
从底部引入,根据我的 UI,这似乎违反直觉。所以我的问题是:
如何使用 presentViewController 使我的 vc2 从右侧而不是底部显示?
谢谢。