我有一个 ipad 应用程序。
我正在尝试用整个屏幕打开视图 2(一种推送视图)。通常如何处理推送视图或UIModalPresentationFullScreen
. 但我的基本视图是视图 1 也是模态视图。
所以当视图 1 被关闭时,我试图打开视图 2……</p>
- (void) handleNewButton :(int)id
{
[self dismissViewControllerAnimated:YES
completion:^{
NewViewController *View2 = [NewViewController alloc] init];
View2.modalPresentationStyle = UIModalPresentationFullScreen;
View2.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentViewController: View2 animated:YES completion:nil];
}];
}
但我的观点 2 没有打开。我知道我不能做推送视图。但是有什么方法可以实现吗?