无法删除AdMob google sense ads中的边框

问题描述:

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

信息: 的Xcode 4.2 IOS与目标C 的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]; 

这看起来像它在AdMob的侧后端的问题。似乎现在没有解决这个问题的方法,直到他们修复它。尽管这个问题只发生在AdSense回填广告上。

+0

这就是我thoghut,但我不知道。也感谢您在admob集团的重播 – Ofir 2012-02-26 07:48:07