我遵循了Chartboost i iOS 中的示例。甚至我也检查了 Stackoverflow 的所有问题。我也使用了他们的建议,但没有找到插页式广告。甚至我也允许在 Chartboost 仪表板的网络中发布。
当应用程序安装在设备上时,它第一次运行良好,即使我们删除应用程序并运行 xcode 仍然是 Chartboost 不显示插页式广告的相同问题。每次调用方法如下:
- (void)didFailToLoadInterstitial:(NSString *)location
我还包括以下方法:
- (void)didDismissInterstitial:(NSString *)location {
NSLog(@"chartboost*** dismissed interstitial at location %@", location);
[[Chartboost sharedChartboost] cacheInterstitial:location];
}
我没有在我的应用程序中看到 Chartboost 广告。我还包括以下方法来检查缓存是否可用。
BOOL isCached = [[Chartboost sharedChartboost] hasCachedInterstitial:@"After level 1"];
并返回 NO。在两个屏幕中,我需要来自 chartboost 的广告。我也给了他们两个不同的位置名称,并在需要时给他们打电话。
如何克服这个问题?