我有这个代码:
-(void)applicationDidBecomeActive:(UIApplication *)application {
JUnlockController *passcodeView = [[JUnlockController alloc] init];
[self.navigationController presentModalViewController:passcodeView animated:YES];
}
问题是,当我在我的应用程序中打开一个模态视图控制器时,它不会出现在它上面。我希望能够找出用户正在查看的当前视图控制器,所以我可以将它显示在上面。