调整 unavigation 控制器中的内容大小

发布于 2024-10-03 19:50:25 字数 381 浏览 4 评论 0原文

在某些情况下,我需要向我的应用程序添加搜索栏或选项卡栏。我使用 UIViewController 作为 UINavigationController 内容。更改 UIViewController 上的框架不会执行任何操作。

有人可以帮忙吗?

谢谢。

下面是在 UIViewController 的 initWithStyle 方法中失败的代码(在其他方法中也失败):

CGRect frame = self.view.frame;
self.view.frame = CGRectMake(0, 0, frame.size.width, frame.size.height - 49);

这可能不是完美的代码,但它至少应该移动视图。

In some cases I need to add a search bar or tab bar to my application. I use UIViewController for the UINavigationController content. Changing the frame on the UIViewControllers wont do anything.

Can anyone help?

Thank you.

Here's code which fails in the initWithStyle method of a UIViewController (Also fails in other methods):

CGRect frame = self.view.frame;
self.view.frame = CGRectMake(0, 0, frame.size.width, frame.size.height - 49);

That might not be perfect code but it should at least move the view.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

独夜无伴 2024-10-10 19:50:25

这是我用来在 UINavigationController 下为应用程序全局的 AdBannerView 腾出空间的技术。也许你可以做类似的事情。

iPhone 应用中的全局 ADBannerView

Here is a technique I use to make room beneath a UINavigationController for an AdBannerView that is global to the app. Perhaps you can do something similar.

global ADBannerView in iPhone app

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