質問

I'm trying to integrate ChartBoost in my app and single ads are displaying OK.

This is the initial setup:

ChartBoost *cb = [ChartBoost sharedChartBoost];
cb.delegate = self;
cb.appId = CHARBOOST_APP_ID;
cb.appSignature = CHARBOOST_APP_SIGNATURE;

[cb showInterstitial];

But when I'm trying to display the "More apps" page, using the ChartBoost tutorial, I don't get the response.

-(IBAction) switchToMoreGames: (id) sender{
    ChartBoost* cb = [ChartBoost sharedChartBoost];
    cb.delegate = self;
    [cb cacheMoreApps];
    [cb showMoreApps];
}

I'd be very appreciative for any kind of help I can get, thanks in advance!

役に立ちましたか?

解決

Since there were many requests for me to answer my own question rather than update it, I have created this answer.

To add "More apps" page you have to go to "Edit your app", then click "More apps page" tab and type the name of your campaign in the input field of the iPhone, which is showing on the right.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top