Skip to content
gskang edited this page Feb 17, 2016 · 3 revisions

애드립 RAT SDK iOS 가이드

1. 초기화

AppDelegate.m 파일에서 설정

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Optional: set debug mode
    ALTracker *tracker = [ALTracker sharedSingletonClass];
    [tracker setDebugMode:YES];
    
    // RAT Tracker initialize the install tracking.
    // Replace with your app ID (ex. 53f473e10cf2bf99ebbfeb34)
    [tracker initialize:ADLIB_RAT_KEY];
    
    return YES;
}

@end

Clone this wiki locally