我沒有收到任何錯誤或什麼。Admob不會加載廣告
我創建了一個CustomView文件,但它似乎沒有工作。
//CustomView.h
#import "GADBannerView.h"
@interface CustomView : UIView
{
GADBannerView *bannerView_;
}
第二個文件:
//CustomView.m
bannerView_ = [[GADBannerView alloc] initWithFrame:CGRectMake(0.0, 430, 320, 50)];
bannerView_.adUnitID = MY_BANNER_UNIT_ID;
bannerView_.rootViewController = [UIApplication sharedApplication].keyWindow.rootViewController;
NSLog(@"%@",bannerView_.rootViewController);
[self addSubview:bannerView_];
GADRequest *request = [GADRequest request];
request.testDevices = [NSArray arrayWithObjects: GAD_SIMULATOR_ID, nil];
[bannerView_ loadRequest:request];
什麼都在日誌中? –
此外,您的BANNER_ID是否使用格式「ca-ad-pub-XXXXXX ../ XXXX」?我最近在admob中看到了一些變化,有些正在影響我們使用UNIT_ID的方式 –
我不使用這種格式,我會試試這個。 – Berendschot