我正在开发iPhone应用程序。在那我想使用chartboost。我是这个概念的新手,所以我使用了该网站提供的代码,但它仍然没有用。我在appdelegate.m文件中使用了上面的编码。并添加了SystemConfiguration.framework和QuartzCore.framework。还有什么我必须做的吗?
#import "Chartboost.h"
- (void)applicationDidBecomeActive:(UIApplication *)application {
// Configure ChartBoost
ChartBoost *cb = [ChartBoost sharedChartBoost]; cb.appId = @"APP_ID";
cb.appSignature = @"APP_SIGNATURE";
// Notify the beginning of a user session
[cb startSession];
// Show an interstitial
[cb showInterstitial]; }
答案 0 :(得分:1)
我也面临同样的问题,解决方案是我们需要在图表提升帐户中创建测试活动。 here
答案 1 :(得分:0)
我实现初始化Chartboost的方法
- (void) initChartboost {
Chartboost *cb = [Chartboost sharedChartboost];
// Add your own app id & signature. These can be found on App Edit page for your app in the Chartboost dashboard
cb.appId = @"YOUR APP ID FROM CB";
cb.appSignature = @"APP SIGNATURE";
// Begin a user session. This should be done once per boot
[cb startSession];
// Cache an interstitial at the default location
[cb cacheInterstitial];
// Cache the more apps page so it's ready & loaded
[cb cacheMoreApps];
}
还要注意您将在模拟器上正确看到插页式广告,但要在设备上看到它们,您必须按照描述here.
将设备UDID添加到Chartboost