What is the use of Plists in iOS?
1787
22-Oct-2015
Updated on 22-Sep-2020
Tarun Kumar
22-Oct-2015The user defaults system, which you programmatically access through the NSUserDefaults class, uses property lists to store objects representing user preferences. This limitation would seem to exclude many kinds of objects, such as NSColor and NSFont objects, from the user default system. But if objects conform to the NSCoding protocol they can be archived to NSData objects, which are property list–compatible objects.