【IOS】如何在cocos2d 遊戲中添加 移動廣告

來源:互聯網
上載者:User

最近有需要在一款Cocos2d 遊戲裡面添加移動廣告,大家都知道,現在有很多的移動廣告平台,每個平台都有自己的SDK,每個SDK的方法,流程又都不一樣,找來找去,找到了 果合移動廣告。
它自己的網站上說:
果合移動廣告是整合admob、iAd、有米、wooboo(哇棒)、架勢、微雲、adchina、madhouse等廣告平台的移動廣告最佳化工具。
試用了一下,感覺還是挺方便的。
SDK:http://www.guohead.com/v/sdk.html (需要註冊)
SDK添加的方法,官方文檔裡面都有,自己看就行了,而
添加廣告的代碼很簡單,只要在
AppDelegate中調用下面的方法即可

-(void) addAD{       UIViewController * adviewController = [[UIViewController alloc] init];    //設定viewController,用於顯示廣告,如果這個設定錯誤,則廣告不能正常顯示,也不能開啟視窗顯示廣告。    adviewController.view = [[CCDirector sharedDirector] openGLView];    ghAdView1 =[[GHAdView alloc] initWithAdUnitId:@"dd0f0d0e06265a393ff83536ba14e8b4" size:CGSizeMake(320.0, 50.0)];    //設定委託    ghAdView1.delegate = self;    //請求廣告    [ghAdView1 loadAd];    //設定frame並添加到View中    ghAdView1.frame = CGRectMake(360,720,320.0, 50.0);    [adviewController.view addSubview:ghAdView1];}

其中dd0f0d0e06265a393ff83536ba14e8b4 是你應用廣告位的id,換成自己的就可以了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.