码迷,mamicode.com
首页 > 移动开发 > 详细

add Admob with Cocos2d-x on iOS

时间:2017-05-21 18:47:31      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:star   osi   deb   http   comm   standard   bundle   tin   run   

add Admob with Cocos2d-x on iOS

 (2013-02-27 14:12:00)
标签: 

it

 
1. download admob, setup your account
2. add admob to xcode project. You need:
    - add libGoogleAdmobAds.a to bundle libraries
    - create a group and add admob header file
3.  in AppController.h, add member:
     

@interface AppController : NSObject <</span>UIAccelerometerDelegate, UIAlertViewDelegate,UITextFieldDelegate,UIApplicationDelegate, GADBannerViewDelegate> {

    UIWindow *window;

    RootViewController    *viewController;

    GADBannerView* bannerView_;

}


4. in AppController.mm

 

    // setup admob

    

    // Create a view of the standard size at the bottom of the screen.

    // Available AdSize constants are explained in GADAdSize.h.

    bannerView_ = [[GADBannerView alloc] initWithAdSize:kGADAdSizeBanner];

    bannerView_.delegate = self;

    // Specify the ad‘s "unit identifier." This is your AdMob Publisher ID.

    bannerView_.adUnitID = @"YOUR_ID";

    

    // Let the runtime know which UIViewController to restore after taking

    // the user wherever the ad goes and add it to the view hierarchy.

    bannerView_.rootViewController = viewController;

    [viewController.view addSubview:bannerView_];

    

    

    // Initiate a generic request to load it with an ad.

    GADRequest* adRequest = [GADRequest request];

    [bannerView_ loadRequest:adRequest];


    // start game

    cocos2d::CCApplication::sharedApplication()->run();






5. we are not over Yet!!!

    You‘ll have exceptions if running the app now. You must do this:

(http://stackoverflow.com/questions/12635283/admob-crashes-with-gadobjectprivate-changestate-unrecognized-selector)

 

You need to add -ObjC to the Other Linker Flags of your application target‘s build setting:

  1. Click the blue top-level project icon in XCode
  2. Choose your target and go to Build Settings
  3. Under Other Linker Flags add -ObjC for both Release and Debug

Done!!!
Let‘s make money and go IPO :)

add Admob with Cocos2d-x on iOS

标签:star   osi   deb   http   comm   standard   bundle   tin   run   

原文地址:http://www.cnblogs.com/mfmdaoyou/p/6885403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!