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

最佳答案

我也遇到了同样的问题,解决方案是我们需要在图表提升帐户中创建测试事件。 here

here is my thread about chart boost

关于iphone - 我的 View 中未显示 ChartBoost 广告,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10929099/

10-11 07:53