문제

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