我找到了一个相关的帖子AdMob Ios Error: Failed to receive ad with error: Request Error: No ad to show,但它并没有解决我的问题。
我正在尝试使用Google代码中的最新示例项目创建插页式广告:https://google-mobile-dev.googlecode.com/files/InterstitialExample_iOS_3.0.zip。
我已将kSampleAdUnitID
更改为我的广告ID。
昨天,当我点击Load Interstitial
时,我得到Request Error: No ad to show
。我不得不点击4-5次才能工作。
今天,我使用相同的代码,但无论我点击Load Interstitial
多少次,都会收到上述错误。
这里有任何帮助吗?
答案 0 :(得分:1)
我的实施如下 - 我希望它有所帮助:
@interface ViewController () <GADInterstitialDelegate>
@property (strong, nonatomic) GADInterstitial *interstitial;
@end
@implementation ViewController
#define MY_INTERSTITIAL_UNIT_ID @"...."
- (void)preLoadInterstitial {
//Call this method as soon as you can - loadRequest will run in the background and your interstitial will be ready when you need to show it
GADRequest *request = [GADRequest request];
self.interstitial = [[GADInterstitial alloc] init];
self.interstitial.delegate = self;
self.interstitial.adUnitID = MY_INTERSTITIAL_UNIT_ID;
[self.interstitial loadRequest:request];
}
- (void)interstitialDidDismissScreen:(GADInterstitial *)ad
{
//An interstitial object can only be used once - so it's useful to automatically load a new one when the current one is dismissed
[self preLoadInterstitial];
}
- (void)interstitial:(GADInterstitial *)ad didFailToReceiveAdWithError:(GADRequestError *)error
{
//If an error occurs and the interstitial is not received you might want to retry automatically after a certain interval
[NSTimer scheduledTimerWithTimeInterval:3.0f target:self selector:@selector(preLoadInterstitial) userInfo:nil repeats:NO];
}
- (void) showInterstitial
{
//Call this method when you want to show the interstitial - the method should double check that the interstitial has not been used before trying to present it
if (!self.interstitial.hasBeenUsed) [self.interstitial presentFromRootViewController:self];
}
@end