1

我在我的应用程序中显示添加,但添加并未iPhone5 device仅显示在simulator.

我正在使用这样的代码 -

-(void)showAdds
{
   {

    if ((UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad))
    {

        bannerView = [[GADBannerView alloc]
                      initWithFrame:CGRectMake(128.0,
                                               670 ,
                                               GAD_SIZE_728x90.width,
                                               GAD_SIZE_728x90.height)];
        bannerView.adUnitID = @"8c9b7de0880d478b";
    }
    else {

        if ([[UIScreen mainScreen] bounds].size.height == 568)
        {
            bannerView = [[GADBannerView alloc]
                          initWithFrame:CGRectMake(120,
                                                   [[UIScreen mainScreen] bounds].size.height - GAD_SIZE_320x50.height ,
                                                   GAD_SIZE_320x50.width,
                                                   GAD_SIZE_320x50.height)];
            bannerView.adUnitID = @"a151d69e8127bd7";
            NSLog(@"ads");
        }
        else
        {
            bannerView = [[GADBannerView alloc]
                          initWithFrame:CGRectMake(80,
                                                   [[UIScreen mainScreen] bounds].size.width - GAD_SIZE_320x50.height ,
                                                   GAD_SIZE_320x50.width,
                                                   GAD_SIZE_320x50.height)];
            bannerView.adUnitID = @"a151d69e8127bd7";
            NSLog(@"ads");

        }

    }

添加显示在模拟器上,但不在 iPhone 设备上。请帮忙。

4

1 回答 1

1

我认为您正在使用测试广告,IOS 6 测试广告不支持设备后,请禁用测试广告,然后您在真实设备中看到广告请参阅此链接 https://developers.google.com/mobile-ads -sdk/docs/admob/intermediate#ios-testing

于 2013-10-28T05:49:47.023 回答