从 NavigationController 推送时如何全屏绘制 UIViewController?

发布于 2024-09-04 08:35:15 字数 102 浏览 4 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

在风中等你 2024-09-11 08:35:15

您可以隐藏导航栏:

- (void) viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    [[self navigationController] setNavigationBarHidden:YES animated:NO];
}

You could hide the navigation bar:

- (void) viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    [[self navigationController] setNavigationBarHidden:YES animated:NO];
}
荒路情人 2024-09-11 08:35:15

模态视图? -presentModalViewController:animated:,可以用modalTransitionStyle属性设置样式(向上滑动、翻转、溶解、卷页)(在视图控制器上变成模态)

Modal view? -presentModalViewController:animated:, you can set the style (slide up, flip, dissolve, page curl) with the modalTransitionStyle property (on the view controller to become modal)

似梦非梦 2024-09-11 08:35:15

如果我理解你的问题是状态栏而不是导航栏..

尝试在你的 info.plist 文件中添加以下行:

<key>UIStatusBarHidden</key>
<true/>

这样应用程序将处于全尖叫状态。

您还可以尝试:

[UIApplication sharedApplication].statusBarHidden = YES;

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:

<key>UIStatusBarHidden</key>
<true/>

This way the application will be in full-scream.

You also try:

[UIApplication sharedApplication].statusBarHidden = YES;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文