NSUserDefaults is a quick and easy way to store small amounts of data for you app. It basically acts as a key-value persistent store and is straighforward to use.
You can also store integer, double and float values. Retrieving values is straightforward as well.
It can be a very useful tool in the right situation. Happy coding.