When and why does NSUserDefaults' synchronize method fail? What is the best way to make sure that my values are actually written and commited to NSUserDefaults, so I wouldn't have any problems restoring state after application restart?
|
|
|
The In the most common case where an app just synchronizes its user domain preferences (in the Library directory of the current user), the function usually does not fail. I think it's safe to just ignore the return value of |
|||||
|
|
In some cases, my app was trying to write a nil value with a certain key, and that was causing synchronize to fail. Now I'm checking that value for nil before the save and the problem is fixed. |
|||
|
|
|
In my cases, I wrongly use NSUserDefaults, and it will fail. For example, I define my own object, and put it into NSUserDefaults or NSDictionary, it can be put, but it will fail when synchronize. Because NSUserDefaults doesn't support every kind of object. As I know, NSString, NSNumber, NSDictionary....you can google it how to make custom class can be stored in NSUserDefaults. |
|||
|
|