我有这个代码:

-(void)applicationDidBecomeActive:(UIApplication *)application {
JUnlockController *passcodeView = [[JUnlockController alloc] init];
[self.navigationController presentModalViewController:passcodeView animated:YES];
}

问题是,当我在应用程序中打开模态视图控制器时,它没有出现在其顶部。我希望能够找出用户正在查看的当前ViewController,因此可以在其顶部显示它。

最佳答案

代替:

[self.navigationController presentModalViewController:passcodeView animated:YES];

用:
[self presentModalViewController:passcodeView animated:YES];

关于iphone - 如何在当前 View Controller 上添加模态视图?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11505728/

10-09 16:12