"You can think of
NSUserDefaults
as an invisible .plist
that you can read and write to, without ever being able to actually see the file. Using NSUserDefaults
, you will be able to restore saved values even if the app has been killed in multitasking.However, how you choose between
.plist
and NSUserDefaults
should be based off of how much data you need to save. Apple recommends only saving small amounts of data to NSUserDefaults
. If you need to save a lot of information then .plist
is the way to go. Either that or of course Core-Data
.".
No comments:
Post a Comment