Trigger event on first launch in xcode
Open AppDelegate.swift and modify this line: func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NS...
https://www.czetsuyatech.com/2014/07/xcode-first-launch-trigger-event.html
Open AppDelegate.swift and modify this line:
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool { return true }to
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool { if (NSUserDefaults.standardUserDefaults().boolForKey("HasLaunchedOnce")){ //app already launched println("app already launched") }else{ NSUserDefaults.standardUserDefaults().setBool(true, forKey: "HasLaunchedOnce") NSUserDefaults.standardUserDefaults().synchronize() //This is the first launch ever println("this is the first launch ever") } return true }
Post a Comment