广告未在iPhone5上展示

时间:2013-10-28 05:39:03

标签: ios adbannerview

我在我的应用中显示了添加内容,但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设备上没有显示。请帮忙。

1 个答案:

答案 0 :(得分:1)

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