Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display "More games" page via ChartBoost in iOS?

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!

like image 247
NikGreen Avatar asked Apr 05 '12 09:04

NikGreen


People also ask

How do I add apps to chartboost?

Click the + APP button on the left sidebar. Fill out the form and click Save to add your app to Chartboost. Then, in your Chartboost dashboard for your app, navigate to App Settings > Basic Settings to locate your App ID and App Signature.

What is Iphone chartboost?

Chartboost is a San Francisco-based mobile game in-app programmatic advertising and monetization platform. Chartboost SDK enables developers to monetize on their mobile apps and connect advertisers to global in-app inventory.


1 Answers

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.

like image 194
NikGreen Avatar answered Nov 15 '22 19:11

NikGreen