Skip to content

Instantly share code, notes, and snippets.

@29satnam
Created September 18, 2016 15:41
Show Gist options
  • Save 29satnam/d605b7dbd58e41bd9b64906e284130bf to your computer and use it in GitHub Desktop.
Save 29satnam/d605b7dbd58e41bd9b64906e284130bf to your computer and use it in GitHub Desktop.
let prefs:NSUserDefaults = NSUserDefaults.standardUserDefaults() //make this global
// Mark: This is how you save.
prefs.setObject("\(someVariable)", forKey: "PORT")
prefs.synchronize()
//Mark: This is how you retrieve saved content.
let retrieve = prefs.valueForKey("PORT") as? String
print(retrieve)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment