ios7 presentviewcontroller 无法设置框架

Posted

技术标签:

【中文标题】ios7 presentviewcontroller 无法设置框架【英文标题】:ios7 presentviewcontroller cannot set frame 【发布时间】:2014-05-07 08:39:17 【问题描述】:

我在 ios 6 中使用过这段代码,我可以在主视图中间显示另一个视图。但是,当我在 iOS 7 中运行时,呈现的视图的原点始终为 0,0。我该怎么办?

rect= CGRectMake((self.view.bounds.size.width/2)-300,(self.view.bounds.size.height/2)-200,600,400);
self.navigationController.modalPresentationStyle = UIModalPresentationCurrentContext;
[self presentViewController:sVCiPad animated:YES completion:nil];
[sVCiPad.view setFrame:rect];

【问题讨论】:

【参考方案1】:

modalPresentationStyle 更改为UIModalPresentationFormSheet

代替

self.navigationController.modalPresentationStyle = UIModalPresentationCurrentContext;

试试这个

sVCiPad.modalPresentationStyle = UIModalPresentationFormSheet;

【讨论】:

谢谢。现在好了。 但我无法设置框架。我该怎么办?此代码在 iOS 7 中不起作用。 sVCiPad.view.superview.bounds = CGRectMake(0, 0, 400, 500); 我找到了解决方案。 ***.com/questions/2457947/…

以上是关于ios7 presentviewcontroller 无法设置框架的主要内容,如果未能解决你的问题,请参考以下文章

iOS7状态栏问题

iOS7 的视图大小和位置

iOS7 和 Apple Watch

ios7之后的一些更改

iOS7隐藏状态栏

在ios7中绘图时出现延迟