从 NavigationController 推送时如何全屏绘制 UIViewController?
我的 ViewController 将开始在 NavigationBar 下绘制,它将把 ViewController 缩小到 436*320 像素 我怎样才能强制它以全屏480*320绘制
my ViewController will start draw under of NavigationBar it will reduce ViewController to 436*320 pixels
how can i force it to draw in full screen 480*320
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以隐藏导航栏:
You could hide the navigation bar:
模态视图?
-presentModalViewController:animated:
,可以用modalTransitionStyle
属性设置样式(向上滑动、翻转、溶解、卷页)(在视图控制器上变成模态)Modal view?
-presentModalViewController:animated:
, you can set the style (slide up, flip, dissolve, page curl) with themodalTransitionStyle
property (on the view controller to become modal)如果我理解你的问题是状态栏而不是导航栏..
尝试在你的 info.plist 文件中添加以下行:
这样应用程序将处于全尖叫状态。
您还可以尝试:
If I'm understanding your problem is with the status bar and not the navigation bar..
Try to add the following lines in your info.plist file:
This way the application will be in full-scream.
You also try: