Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robbestad/iadhelper
Objective-C Helper class to ease integration with iAD for Cocos2D v3
https://github.com/robbestad/iadhelper
Last synced: about 1 month ago
JSON representation
Objective-C Helper class to ease integration with iAD for Cocos2D v3
- Host: GitHub
- URL: https://github.com/robbestad/iadhelper
- Owner: robbestad
- License: mit
- Created: 2014-02-23T20:11:15.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-09-02T15:41:10.000Z (over 10 years ago)
- Last Synced: 2024-04-13T17:10:58.430Z (9 months ago)
- Language: Objective-C
- Size: 268 KB
- Stars: 12
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
iAdHelper
=========Objective-C Helper class to ease integration with iAD for Cocos2D v3
Usage
=========
* Add the files in the iAdHelper folder to your project
* Include "iAdHelper.h" in your implementation file
* In your init method, add *[iAdHelper sharedHelper];*
* Ads are display at the top of screen as default.
* To explicitly set the position, include the following parameter
* *[iAdHelper setBannerPosition:BOTTOM];* (alternatives are TOP or BOTTOM)That's it. Ads are enabled.
Sample Init
=========- (void)didLoadFromCCB {
[iAdHelper sharedHelper];
[iAdHelper setBannerPosition:BOTTOM];
}==========
Live Demo
Check out https://itunes.apple.com/us/app/rocketdoge/id813052886 where this implementation is added to every scene