Created
September 18, 2016 15:41
-
-
Save 29satnam/d605b7dbd58e41bd9b64906e284130bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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