调整UINavigationController布局问题

发布于 2024-10-31 03:10:59 字数 685 浏览 1 评论 0原文

我正在尝试在扩展的 UINavigationController 中添加 ADBannerView。 当横幅加载时,我像这样调整视图大小:

CGRect contentFrame = [[UIScreen mainScreen] applicationFrame];
banner.currentContentSizeIdentifier = ADBannerContentSizeIdentifier320x50; 
bannerHeight = banner.bounds.size.height;

self.view.frame = CGRectMake(self.view.bounds.origin.x, 
                                  (self.view.bounds.origin.y), 
                                  self.view.bounds.size.width, 
                                  contentFrame.size.height - (bannerHeight));

但 UIView 部分隐藏在导航栏下: here知道

出了什么问题吗?

谢谢

[1]:

I'm trying to add a ADBannerView inside my extended UINavigationController.
When the banner loads I re-size the view like this:

CGRect contentFrame = [[UIScreen mainScreen] applicationFrame];
banner.currentContentSizeIdentifier = ADBannerContentSizeIdentifier320x50; 
bannerHeight = banner.bounds.size.height;

self.view.frame = CGRectMake(self.view.bounds.origin.x, 
                                  (self.view.bounds.origin.y), 
                                  self.view.bounds.size.width, 
                                  contentFrame.size.height - (bannerHeight));

but the UIView is partially hided under the navigation bar: here

Any idea what is wrong?

thanks

[1]:

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

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

发布评论

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

评论(1

秋心╮凉 2024-11-07 03:10:59
self.view.frame = CGRectMake(self.view.bounds.origin.x, 
                              (self.view.bounds.origin.y)+(bannerHeight), 
                              self.view.bounds.size.width, 
                              contentFrame.size.height - (bannerHeight));
self.view.frame = CGRectMake(self.view.bounds.origin.x, 
                              (self.view.bounds.origin.y)+(bannerHeight), 
                              self.view.bounds.size.width, 
                              contentFrame.size.height - (bannerHeight));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文