I am getting nil for the launchOptions in the following method .
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
return true
}
And the app crashes,what should I do now? If anybody knows help me!
I have attached the screenshot of my console.
launchoptions has the UIApplicationLaunchOptionsKey is the one that signifies and has values when your app is launched from some action like openURL, notification etc.
Please have a look at link http://nshipster.com/launch-options/ for further info.
Collected from the Internet
Please contact [email protected] to delete if infringement.
Comments