Tutorial by Examples

For Getting updated or to do something before app goes live to user you can use below method. AppDidFinishLaunching - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Write your code before app launch return YES; } While ...
AppDelegate contains your app’s startup code. It responds to key changes in the state of your app. Specifically, it responds to both temporary interruptions and to changes in the execution state of your app, such as when your app transitions from the foreground to the background. It responds to ...
Asks the delegate to open a resource specified by a URL, and provides a dictionary of launch options. Example of usage: func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool { return SomeManager.shared.handle( ...
Example of usage: /* Instance of your custom APNs/local notification manager */ private var pushManager: AppleNotificationManager! Registration: func application(application: UIApplication, didRegisterUserNotificationSettings notificationSettings: UIUserNotificationSettings) { // Called...

Page 1 of 1