Quick Links: Download Gideros Studio | Gideros Documentation | Gideros community chat | DONATE
Writing plugin for Gideros - Learn iOS dev by example (Obj-C) — Gideros Forum

Writing plugin for Gideros - Learn iOS dev by example (Obj-C)

MellsMells Guru
edited January 2013 in General questions
Hi all,

I see people create plugins to add extra functionalities to their apps.
I would like to be able to understand the basics, create plugins and integrate third party services in my apps (ex Camera+, Chartboost, etc...) whenever I need it.

When I see the code below I would like to be able to know the next steps to integrate it into my Gideros apps :

Initialize Chartboost in your applicationDidBecomeActive method, like this:

#import "Chartboost.h"
- (void)applicationDidBecomeActive:(UIApplication *)application        
    Chartboost *cb = [Chartboost sharedChartboost];
 
    cb.appId = <a href="http://forum.gideros.rocks/profile/YOUR_CHARTBOOST_APP_ID" rel="nofollow">@YOUR_CHARTBOOST_APP_ID</a>;
    cb.appSignature = <a href="http://forum.gideros.rocks/profile/YOUR_CHARTBOOST_APP_SIGNATURE" rel="nofollow">@YOUR_CHARTBOOST_APP_SIGNATURE</a>;
 
    // Begin a user session
    [cb startSession];
 
    // Show an interstitial
    [cb showInterstitial];
 
}
How to get that knowledge?
Do you have an idea of resources to get that kind of knowledge and learn by the example (outside of the Apple resources, btw what do you think about it as a starting point? Confusing or really good?).

Thank you!

ps : @moopf @OZApps do you have a book/site that you recommend for accelerated learning?
twitter@TheWindApps Artful applications : The Wind Forest. #art #japan #apps

Comments

Sign In or Register to comment.