无法删除AdMob google sense广告中的边框

时间:2012-02-07 13:48:43

标签: objective-c ios xcode admob

我在以下代码中收到广告。 当广告为Google Sense时,我会在广告上看到蓝色边框。 1)我无法将边框类型更改为无(这对我来说很重要)。 2)此外,我无法在属性request.additionalParameters中的UIViewController中更改以下代码中的广告颜色 我在AdMob的应用程序设置中设置了使用客户端颜色

信息: 用于具有目标C的IOS的xcode 4.2 ADMob SDK 5.5

代码:

GADBannerView *banner;
banner =[[GADBannerView alloc] initWithFrame:CGRectMake(0, self.view.frame.size.height -    GAD_SIZE_320x50.height, GAD_SIZE_320x50.width, GAD_SIZE_320x50.height)];

banner = [[GADBannerView alloc]
          initWithFrame:CGRectMake(0.0,
                                   self.view.frame.size.height -
                                   GAD_SIZE_320x50.height,
                                   GAD_SIZE_320x50.width,
                                   GAD_SIZE_320x50.height)];
banner.adUnitID = MY_BANNER_UNIT_ID;
banner.rootViewController = self;
[self.view addSubview:banner];
GADRequest *request = [GADRequest request];
request.additionalParameters =  [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                 @"FFFF00", @"color_bg",
                                 @"008000", @"color_bg_top",
                                 @"FF00FF", @"color_border",
                                 @"FF0000", @"color_link",
                                 @"808080", @"color_text",
                                 @"00FF00", @"color_url",
                                 nil];
[banner loadRequest:request];

1 个答案:

答案 0 :(得分:0)

这看起来像是AdMob方面的后端问题。在他们修复之前,似乎现在没有解决方法。这个问题只发生在我的AdSense回填广告上。