We have the main app integrated with Firebase SDK. User sign in via main application using email, google or facebook.
Now, we have share extension implemented which ide
To read and save from the same set of NSUserDefaults you need to the the following:
Write to your NSUserDefaults:
// In this example I´m setting FirstLaunch value to true
NSUserDefaults(suiteName: "group.myapp.test")!.setBool(true, forKey: "FirstLaunch")
Read from NSUserDefaults:
// Getting the value from FirstLaunch
let firstLaunch = NSUserDefaults(suiteName: "group.myapp.test")!.boolForKey("FirstLaunch")
if !firstLaunch {
...
}