我有一个非常基本的 View Controller 类,通过界面生成器创建。它只有一个 View ,即 UIWebView(参见此处:http://i55.tinypic.com/xdax01.png)。
在我的应用程序的某个地方,我想通过 presentModalViewController 将此 View Controller 作为模态对话框打开。这是我实现此目的的代码:
self.viewController.modalPresentationStyle= UIModalPresentationFormSheet;
WebController* dvc= [[WebController alloc] initWithNibName"WebController" bundle:nil];
[self.viewController presentModalViewController:dvc animated:YES];
显示模式对话框,但不幸的是,它全屏显示,而不是 UIModalPresentationFormSheet 的较小尺寸。当我用这个替换上面的代码时:
self.viewController.modalPresentationStyle= UIModalPresentationFormSheet;
MFMailComposeViewController *mailViewController = [[MFMailComposeViewController alloc] init];
[self.viewController presentModalViewController:mailViewController animated:YES];
应用程序将正确显示带有表单大小的模式对话框(不是全屏)。
我必须做什么才能以较小的表单尺寸而不是全屏显示我的 View Controller 类?
Best Answer-推荐答案 strong>
modalPresentationStyle 适用于呈现的 View Controller 而不是宿主视图 Controller 。所以在你的情况下,你必须这样做:
dvc.modalPresentationStyle=UIModalPresentationFormSheet;
关于ios - iPad + UIWebView + presentModalViewController,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/7528015/
|