Tagged Questions
NSUserDefaults. Provides a way for application behavior customization based on user preferences. Belongs to the Foundation framework for Cocoa and Cocoa Touch.
42
votes
5answers
28k views
Why NSUserDefaults failed to save NSMutableDictionary in iPhone SDK?
I'd like to save an NSMutableDictionary object in NSUserDefaults. The key type in NSMutableDictionary is NSString, the value type is NSArray, which contains a list of object which implements NSCoding. ...
20
votes
6answers
484 views
Hundreds of accesses to “InputModeProperties.plist” are lagging my game (iPhone)
i have a weird problem with a bugfix for Tiny Wings. In my game i use something like:
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
[userDefaults setFloat:musicVolume ...
18
votes
3answers
4k views
What's the optimum way of storing an NSDate in NSUserDefaults?
There's two ways of storing an NSDate in NSUserDefaults that I've come across.
Option 1 - setObject:forKey:
// Set
NSDate *myDate = [NSDate date];
[[NSUserDefaults standardUserDefaults] ...
15
votes
6answers
6k views
Easy way to see saved NSUserDefaults?
Is there a way to see what's been saved to NSUserDefaults directly? I'd like to see if my data saved correctly.
15
votes
4answers
8k views
Clearing NSUserDefaults
I'm using +[NSUserDefaults standardUserDefaults] to store application settings. This consists of roughly a dozen string values. Is it possible to delete these values permanently instead of just ...
14
votes
1answer
6k views
How to store custom objects in NSUserDefaults
Alright, so I've been doing some poking around, and I realize my problem, but I don't know how to fix it. I have made a custom class to hold some data. I make objects for this class, and I need to ...
13
votes
2answers
9k views
How to register user defaults using NSUserDefaults without overwriting existing values?
I have an AppDelegate class with +(void)initialize method that I use to register some defaults. Here's the code that I use:
+ (void)initialize {
NSDictionary *defaults = [NSDictionary ...
12
votes
3answers
5k views
NSUserDefaults - How to tell if a key exists
Alright, so I'm working on a small iPhone app, and I am using NSUserDefaults as my data persistence. It only has to keep track of a few things, such as some names and some numbers so I figure I might ...
11
votes
3answers
2k views
Do NSUserDefaults persist through an Update to an app in the Appstore?
Is this the case? Do NSUserDefaults get reset when you submit an update to an app on the App Store, or are they reset?
My app is crashing when updated but not crashing when downloaded fully - so I'm ...
10
votes
4answers
4k views
8
votes
3answers
7k views
How can I reset the NSUserDefaults data in the iPhone simulator?
I've added NSUserDefault data retrieval to my app, which is pretty nice. But for testing I would like to reset all the data I added to the defaults database, so that everything is in the state when ...
7
votes
2answers
3k views
How to get an update NSUserDefault on iOS 4?
I am developing an iPhone application, I encounter a problem on the iOS4 because of multi task.
This application has the default settings defined in a Settings.bundle.
If I run my application then I ...
7
votes
3answers
624 views
Can other programs read my NSUserDefaults settings?
On the iphone can other apps read the values you've set using NSUserDefaults?
Not including jail-broken phones.
I'm considering saving the customer's userid/password for our service.
Thanks,
6
votes
3answers
316 views
Why does NSUserDefaults return a deallocated string? (update #2)
In my app I write multiple strings to the defaults database, like this:
[[NSUserDefaults standardUserDefaults] setObject:@"Hi" forKey:@"GREETING"];
When I call multiple times during my app life ...
6
votes
4answers
1k views
iPhone - How to detect if a key exists in NSUserDefaults standardUserDefaults
Using NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];,
I use calls like BOOL boolFromPrefs = [defaults boolForKey:@"theBoolKey"]; To get a saved BOOL value.
If the key is not ...
6
votes
3answers
3k views
How to use a boolean in NSUserDefaults
When the root view controller of my application is loaded, I want to be able to check whether or not the users login credentials have been saved to NSUserDefaults.
Basically, when the user loads the ...
6
votes
3answers
4k views
Why is NSUserDefaults not saving my values?
hi i am trying to use nsuser defaults to save some default values in database. I am able to save the values in the nsuserdefault(even checked it in nslog).
Now i need the values in app delegate when ...
5
votes
1answer
52 views
How do I signal other Cocoa apps that preferences were changed?
I'm changing the .GlobalPreferences NSUserSubstitutions preference through the NSUserDefaults class (through PyObjC, but that's besides the point).
This preference controls the text substitutions ...
5
votes
5answers
537 views
Should I use NSUserDefaults or a plist to store data?
I will be storing a few strings (maybe 10-20). I am not sure if I should use NSUserDefaults to save them, or write them out to a plist. What is considered best practice? NSUserDefaults seems like it ...
5
votes
3answers
533 views
What are the limitations of NSUserDefaults?
Storing data permanently in an iPhone is usually done using Core Data or sqlite3. Most people prefer to user NSUserDefaults as a storage for application preferences, rather than using it as a normal ...
5
votes
4answers
418 views
When (not) to abuse NSUserDefaults
I wonder what the guidelines are for:
1 - how often I can read from NSUserDefaults
2 - how much data I can reasonably store in NSUserDefaults
Obviously, there are limits to how much NSUserDefaults ...
5
votes
7answers
366 views
Cannot set NSUserDefaults field
I have the following code in my initialization (first time) of my app:
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSString *uid=@"1";
[defaults setObject:uid ...
5
votes
1answer
329 views
iPhone - Changing app settings while application is running in the background
The problem i am having is if i make changes to the application settings while the application is running in the background the changes aren't available in my app until it is restarted. Am i missing ...
5
votes
1answer
2k views
How to receive NSUserDefaultsDidChangeNotification iphone
After a lot of searching I was not able to find wheather you need to pass a dictionary object to:
[NSUserDefaultsDidChangeNotification addObserver: forKeyPath: options: context:];
and what should ...
5
votes
4answers
4k views
iPhone Objective C : Saving & Loading UIColor into & from NSUserDefaults
What's the easiest way to save UIColor into NSUserDefaults ?
And how to re-create it from NSUserDefaults?
Many thanks for reading
5
votes
3answers
972 views
When does application state belong in Core Data instead of NSUserDefaults?
I'm trying to decide whether some application state, specifically the selected item in a list, should be stored in Core Data or NSUserDefaults.
Generally I believe that application preferences and ...
4
votes
2answers
169 views
Saving game progress with NSUserDefault: Good or Bad idea?
I'm working on a game and all progress the user makes will be saved with NSUserDefaults. Is it a good or bad idea???
What are the chances of losing the game saved? Is there a better way to do this?
...
4
votes
2answers
459 views
NSUserDefaults reset
Can we reset NSUserDefaults for all the keys at the same time?
Right now I reset for individual keys. So if there is a way to do that in a single go please tell me.
Thanks
4
votes
3answers
2k views
What is the use of -[NSUserDefaults registerDefaults:]?
What is the difference between:
[[NSUserDefaults standardUserDefaults] registerDefaults:
[NSDictionary dictionaryWithObjectAndKey:anObject, @"something"]];
And this:
[[NSUserDefaults ...
4
votes
3answers
409 views
Why is NSUserDefaults leaving temporary plist files in Library/Preferences for my app?
I'm having trouble figuring out why NSUserDefaults is leaving junk plist files in Library/Preferences for my app.
I'm seeing the following files...
com.mycompany.myapp.plist
...
4
votes
1answer
792 views
Delete all my NSUserDefaults that start with a certain word
[[NSUserDefaults standardUserDefaults] removeObjectForKey:@"Dog*"];
Is there a way for me to "walk" through a list of all the userDefault values in my iPhone app, and only delete certain ones?
I.E. ...
4
votes
1answer
972 views
How persistent is [NSUserDefaults standardUserDefaults]?
I'm using [NSUserDefaults standardUserDefaults] for storing application settings.
My questions are:
do those settings are removed on app deletion?
are they kept after an application update (through ...
4
votes
1answer
563 views
Converting NSUserDefaults to Keychain?
So, NSUserDefaults is quite easy to use. But apparently, it is not too secure - there is no encryption. And of course the client wants the app prefs to be secure because it contains sensitive data.
...
4
votes
3answers
2k views
Another question about iPhone application state
I have another question about restoring application state, on the iPhone.
Simple data (like the selected tab) can be stored in NSUserDefaults, but it is not enough.
I want to restore the whole state, ...
3
votes
1answer
90 views
How to save and retrieve data using NSUserDefaults
I have data for 100 videos in my app. I need every video playback time when it is paused or when it is stopped I need to store all the videos play back time using NSUserDefaults. How can I achieve ...
3
votes
2answers
342 views
How to use NSUbiquitousKeyValueStore and NSUserDefaults together
Documentation is not clear on how to use NSUbiquitousKeyValueStore with edge cases.
If I want to set a value, I understand that I should set a value to both NSUserDefaults and ...
3
votes
4answers
139 views
Load a .nib at first app launch
I want to show the "intro" nib i made only at first app launch.
I was using the following code in my viewDidLoad but it seems to do nothing (even in ViewWillAppear). I tried to clean, remove the app ...
3
votes
1answer
112 views
App Store rejection due to programmatically adding application to all spaces
I have an app submitted to the app store that was rejected due to:
2.30 Apps that do not comply with the Mac OS X File System documentation will be rejected
They claim my app is modifying the ...
3
votes
4answers
148 views
Is there any limit in storing values in NSUserDefaults
I am new to iPhone development and objective C.
I have used NSUserDefaults to store some values in my app.
But I don't know that if there is any limit for storing values in NSUserDefaults.
Can anyone ...
3
votes
1answer
223 views
Objective C: How to set key in NSUserDefault
I am trying to store information in NSUserdefault. My intention is to show a pop up message to the user if it is the first time he/she is launching the app. My code is as follows:
//In my view did ...
3
votes
1answer
307 views
ios nsuserdefaults sync
Hi I have arrays saved in NSUserDefaults in my ios application.
I want to create a two way sync to get data from the sql server and store it in this database as well as updating the server with this ...
3
votes
1answer
764 views
NSUserDefaults removeObjectForKey vs. setObject:nil
Are the following two lines equivalent?
1.
[[NSUserDefaults standardUserDefaults] removeObjectForKey:@"example key"]
2.
[[NSUserDefaults standardUserDefaults] setObject:nil forKey:@"example ...
3
votes
3answers
278 views
Does NSUserDefault take a few seconds to register the values I pass it?
I am passing an integer value to the NSUserDefault object to store for use when my app loads up. I HAD it working perfectly until I tried to switch that integer value to a float. It caused a whole ...
3
votes
2answers
697 views
Is it bad form to synchronize NSUserDefaults in -(void)dealloc?
I load from NSUserDefaults in my object's init method.
Can I save to NSUserDefaults in my object's dealloc method?
Something exactly like:
-(void)dealloc {
NSUserDefaults *userDefaults = ...
3
votes
1answer
629 views
ShareKit - How to access the Twitter username
Currently I have set up my application to take advantage of the XAuth implementation of Twitter services via ShareKit. Those that are aware of ShareKit and have implemented it into your own ...
3
votes
2answers
725 views
root.plist changes not visible on iphone
when i add new entries to my settings bundle root.plist file, build and run the app, the new settings are not visible within the app. I've of course used a unique key for the new entries.
In my ...
3
votes
4answers
894 views
NSUserDefaults not present on first run on simulator
I've got some settings saved in my Settings.bundle, and I try to use them in application:didFinishLaunchingWithOptions, but on a first run on the simulator accessing objects by key always returns nil ...
3
votes
2answers
518 views
Using NSUserDefaults how to save a key before app is first run
I have an app where I need a BOOL value to persist across launches.
The value should be YES on the first launch and user-customizable thereafter.
But if it's the first launch, how do I set the ...
3
votes
4answers
1k views
NSKeyedArchiver/NSuserDefaults - saving a CGRect
My app involves a user being able to drag specific items such as volume sliders and UIImage views. My goal is to be able to save the locations of the items so that the user can not have to drag the ...
3
votes
1answer
589 views
Is it possible to share a settings bundle and NSUserDictionary object between applications?
My guess is that the answer is "no", but I figured I'd ask anyway.
Lets say that I have a shared library that multiple applications build into their executables. Now lets say that this shared library ...