Tag: NSUserDefaults
-
Using Settings Bundles with Swift
Have you ever wondered how to put user defined settings for your app into the settings app? Xcode can create a special property list called a settings bundle which can append the NSUserDefaults with more entries from Settings App. You’ll find out in this lesson how to set up a settings bundle in your app […]
-
How to Use NSUserDefaults in Swift.
While Property Lists can be ways of storing data, there is a better way of handling small amounts of data for preferences and settings that might change over time and user. While built on a property list, NSUSerDefaults Makes for a more convenient way for such data. IN this lesson, we’ll introduce NSUserDefaults and a […]