...
4. Add the following delegate notation (can also be added at AppDelegate.h):
Code Block |
---|
class AppDelegate: UIResponder, UIApplicationDelegate, AppoxeeNotificationDelegate { } |
...
5. Add the following implementation to the method named: application:didFinishLaunchingWithOptions:, Where, xxx.xxx represents the SDK ID. These were created for you with the Appoxee Dashboard:
Code Block |
---|
-func application(BOOL)application:( UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { , didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { Appoxee.shared()?.engageWithLaunchOptions(launchOptions, andDelegate: nil, andSDKID: "123456789.00") // Insert other initialization code or other Frameworks code below. return YES;true } |
Info | ||
---|---|---|
| ||
Attention! you will still need to define AppoxeeConfiguration.plist file, if you need to configure your applications environment |
...