我在我的应用中使用Admob interstitial。 我遵循了所有指南,我观察到视频插页式是自动呈现的,而我还没有调用presentFromRootViewController。
我正在使用该代码预加载插页式广告:
splashInterstitial_ = [[GADInterstitial alloc] initWithAdUnitID: interstitialIdStr];
splashInterstitial_.delegate = self;
requestInterstitial = [GADRequest request];
[splashInterstitial_ loadRequest: requestInterstitial];
在代表中,我不提供插页式广告:
- (void)interstitialDidReceiveAd:(GADInterstitial *)ad
{
}
我在两个屏幕之间手动显示插页式广告,如下所示:
if (splashInterstitial_.isReady)
{
[splashInterstitial_ presentFromRootViewController: interstitialRootViewController];
self.lastInterstitialTime = [[NSDate date] timeIntervalSince1970];
return YES;
}
我在presentFromRootViewController上放置了一个断点,从未到达断点,我可以看到在真实设备上显示的插页式视频。
我听起来像插页式广告上的loadRequest会触发不应发生的演示文稿。
是否有人遇到类似问题? 感谢