我正在开发 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]; }