方向改变时无法调整 AdMob 视图的大小

发布于 2024-12-19 20:15:11 字数 970 浏览 2 评论 0原文

到目前为止我尝试过的是,在 viewDidLoad 中,我拨打了电话

self.bannerView.autoresizingMask=UIViewAutoresizingFlexibleWidth;

,但这

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)newInterfaceOrientation duration:(NSTimeInterval)duration {
    if (newInterfaceOrientation == UIInterfaceOrientationLandscapeLeft || newInterfaceOrientation == UIInterfaceOrientationLandscapeRight) {
        self.bannerView.frame=CGRectMake(0.0,
                                         0.0,
                                         480.0,
                                         GAD_SIZE_320x50.height);
    }
    // Position the UI elements for portrait mode
    else {
        self.bannerView.frame=CGRectMake(0.0,
                                         0.0,
                                         GAD_SIZE_320x50.width,
                                         GAD_SIZE_320x50.height);
    }
}

两个对我来说都不起作用。

What I tried so far is, in viewDidLoad, I called

self.bannerView.autoresizingMask=UIViewAutoresizingFlexibleWidth;

and

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)newInterfaceOrientation duration:(NSTimeInterval)duration {
    if (newInterfaceOrientation == UIInterfaceOrientationLandscapeLeft || newInterfaceOrientation == UIInterfaceOrientationLandscapeRight) {
        self.bannerView.frame=CGRectMake(0.0,
                                         0.0,
                                         480.0,
                                         GAD_SIZE_320x50.height);
    }
    // Position the UI elements for portrait mode
    else {
        self.bannerView.frame=CGRectMake(0.0,
                                         0.0,
                                         GAD_SIZE_320x50.width,
                                         GAD_SIZE_320x50.height);
    }
}

Both of these didn't work for me.

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

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

发布评论

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

评论(2

惯饮孤独 2024-12-26 20:15:12

嗯,我认为 AdMob 的广告素材在横向时无法拉伸以适应屏幕尺寸。因此,尽管您拉伸了视图的框架以适应,但我认为广告本身将保持相同的大小。

这意味着您仍然应该看到广告在方向发生变化时出现,它看起来只是大小相同(请确保在 willAnimateRotationToInterfaceOrientation: 方法中再次请求广告才能看到这一点)。

Hmm, I don't think that AdMob's creatives can stretch to fit the size of the screen when in landscape. So despite the fact that you're stretching the frame of the view to fit, the ad itself I think will stay the same size.

This means you should still see an ad come in on orientation changes, it will just look like it's the same size (make sure to make another request for an ad in the willAnimateRotationToInterfaceOrientation: method to see this).

原野 2024-12-26 20:15:12

您不需要执行任何移动,但必须为 adMovView 设置正确的 rootViewController。

如果您使用视图控制器模型,请在每个自定义视图控制器中添加行

adMobView.rootViewController = viewController;

其中 viewController - 您应用程序的根视图控制器。

不要

adMobView.rootViewController = self; 

在自定义视图中这样编码!

You don't need to do any moves, but you must set correct rootViewController for adMovView.

If you use view controller model please add line in each custom view controller

adMobView.rootViewController = viewController;

where viewController - root view controller of your app.

Do not code like this

adMobView.rootViewController = self; 

in custom view!

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