我听说你可以使用modalPresentationStyle在iPad的Mail应用程序中创建一个视图弹出窗口.我很难搞清楚如何使用它.我在这里看了这篇文章,仍然无法弄清楚如何完成这项任务.如果有人能解释如何连接控制器以使这个代码工作,这将是伟大的.
谢谢
我认为神奇的咒语如下:
myViewController = ..... create your new controller if needed .... myViewController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal; myViewController.modalPresentationStyle = UIModalPresentationFormSheet; // "self" here is a ViewController instance [self presentModalViewController:myViewController animated:YES]
我似乎记得,在肖像中,模态接管了屏幕; 在景观中,它将以视图为中心呈现.