ios5 - 带有故事板的模态视图控制器的大小
是否有任何方法可以调整已使用故事板segue以模态方式呈现的视图控制器的大小?
如何通过翻转过渡从该模态视图控制器中呈现另一个视图控制器?
如果我将其定义为 Style=Modal、Presentation=Default、Transition=Flip Horizontal,它看起来很奇怪(背景为白色)。
谢谢!
is there any way to resize a View Controller that has been presented modally using a storyboard segue?
how do I present another View Controller from this modal view controller with a flip transition?
If I define it as Style=Modal, Presentation=Default, Transition=Flip Horizontal it just looks weird (background is white).
Thx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的。在界面生成器中选择视图控制器,然后在属性检查器中将“大小”设置为自由形式(根据推断)。然后选择视图并将其测量值设置为您需要的任何值。需要注意的重要一点是在视图控制器中取消选中 Resize View From NIB,否则视图将再次变为全屏。
不确定第二个问题是否背景是唯一的问题,你不能只设置颜色吗?
希望这有帮助。
Yes. In interface builder select the view controller and in the attribute inspector set Size to freeform (from inferred). Then select the view and set its measurements to whatever you require. An important point to note is uncheck Resize View From NIB in the view controller otherwise the view becomes full screen again.
Not sure about the second question if the background is the only problem can't you just set the colour?
Hope this helps.
您可以使用自定义 UIStoryboardSegue 调整模态呈现视图的大小。在故事板中,将 Segue 设置为 Custom 而不是 Modal。在 Segue 类中,为其指定 UIStoryboardSegue 覆盖的名称。
要覆盖 UIStoryboardSegue,您不需要 .h 文件中的任何内容。它将显示为如下所示:
MyStoryboardSegue.h:
在 MyStoryboardSegue.m 中,代码为:
You can resize a modally-presented view with a custom UIStoryboardSegue. In the storyboard, set the segue to Custom instead of Modal. In the Segue Class, give it the name of your UIStoryboardSegue override.
To override UIStoryboardSegue, you won't need anything in your .h file. It will appear as something like this:
MyStoryboardSegue.h:
In MyStoryboardSegue.m, the code would be:
我正在尝试做同样的事情,在storyBoard中我的ModalView较小,但在模拟器中它覆盖了所有屏幕...
我认为这不能在iPhone中完成...(我在iPad和模态视图有效)。
我将尝试 iPhone 的半透明视图,并且不会使用模态视图。
希望这有帮助。
I'm trying to do the same, and in storyBoard my ModalView is smaller , but in simulator it covers all screen...
I think this cannot be done in iPhone... (I've made a simple test in iPad and the modal view worked).
I'll try a semi-transparent view for iPhone and won't use a Modal View.
Hope this helps.