NSUserDefaults is the Objective-C API for storing and retrieving user preferences in Apple's Foundation framework for Cocoa and Cocoa Touch.
0
votes
3answers
41 views
iOS NSUserDefaults access before synchronize completion
If I set an NSUserDefault object and try to access it before it has been synchronized, will I be able to access the object I just added?
I've tried writing code to test it but I'm unsure of if the ...
0
votes
1answer
20 views
Local key-value storage other than NSUserDefaults
I have followed the Apple documentation on syncing preferences via iCloud - essentially, iterating over every key in the 'updated' user info and setting it in [NSUserDefaults standardDefaults].
But I ...
0
votes
0answers
32 views
iOS - Where to save sensitive data - NSUserDefaults, Keychain, something else?
I am developing an app that, while it doesn't have "credentials" per se, it does assign some identifying information to each user for use with a remote service. This info should be as invisible as ...
2
votes
0answers
35 views
Saving and retrieving custom object from NSUserdefaults is not working
I am trying to save a custom object to NSUserDefaults but it doesn't work. Here is the code.
/// User.m ////////////
#import "User.h"
@implementation User
....
+ (User *)getUser {
...
0
votes
0answers
9 views
NSUserDefaults - Pickerview
I want to save position and the choice of a pickerview.. With NSUserDefaults
It is one picker with 5 rows.
NSInteger selectedRow = [pickerView selectedRowInComponent:0];
[[NSUserDefaults ...
0
votes
0answers
13 views
passing array to a tabelvew through segue
I have an app that shows a tablieview controller on startup, then its pushes to a viewcontroller where I type in a label and hit a button. When that button is clicked, it pops me back to the tableview ...
0
votes
1answer
33 views
Save float value (UIFontSize) By NSUserDefaults
How to save float value (UIFontSize)by NSUserDefaults?
(void)pinchGesture:(UIPinchGestureRecognizer *)gestureRecognizer{NSLog(@"*** Pinch: Scale: %f Velocity: %f", gestureRecognizer.scale, ...
0
votes
0answers
16 views
How to load a specific scene when application starts based on NSUserDefaults in storyboard
I am new to storyboards. I have made up an application that has a login screen. Once the user logs in, his username and password are saved in NSUserDefaults. This is because when the user has to login ...
-1
votes
1answer
8 views
Updating a key in NSUserDefaults dictionary (inside array)
I have read that an array retrieved from NSUserDefaults is immutable. If I have an array of dictionaries, and I want to update the object for a key on one of those dictionaries, do I have to make a ...
0
votes
0answers
34 views
Handling Dynamic amount of Strings for persistent and runtime storage in an IOS App
Background
-I posted this on Programmers, but I think this may be specific enough to post here:
I am dynamically building an FQL query statement and because of the nature of the app, I exclude FB ...
0
votes
3answers
59 views
Confusion with NSUserDefaults
1. [[NSUserDefaults standardUserDefaults] setInteger:VIPassetCount forKey:@"VIPcount"];
[[NSUserDefaults standardUserDefaults]synchronize];
2. `[[NSUserDefaults standardUserDefaults] ...
0
votes
1answer
71 views
Deleting table row saved in NSUserDefualt iOS
In my application I am giving name to my PDF file with the help of AlertView textfield. The names are saving in Array of table list as well as NSUserDefault to access at any time. Now when I am ...
0
votes
0answers
47 views
NSUserDefaults loses stored values third time
I used NsUserDefaults for login page.
First I enter username and password, push sub viewcontroller then I come again login page and automatically login and push subviewcontroller (I can login ...
3
votes
1answer
33 views
Can I update an iTunes App with a new project but the same Bundle ID?
If I update my old app that's currently in the App Store by creating a new Project that has the same Bundle ID, will my users lose the data they've stored in NSUserDefaults?
All the code will just be ...
1
vote
4answers
58 views
Pass data between UITabBarController views
I have searched for an entire day for a simple example on this and haven't found it yet. I am working on an app and I want to make an API call on the initial load and populate some variables that will ...
0
votes
1answer
46 views
Is it Okay to have Entities in Core Data with no relation with any other entities?
Is it Okay to move whatever information we store in NSUserDefaults to CoreData ?
Generally we store some user settings kind of data , or user's information in NSUserDefault,
If we store this in a ...
-3
votes
1answer
53 views
IOS: store in NSUSerdefault an array of object [duplicate]
I have an array of object (custom object), it's called "favorite" and when I try to store this array in NSUserDefault i have this error
my code:
inside favorite -> (object1, object2, object3...) ...
0
votes
0answers
257 views
iOS Post to Facebook publish screen doesn't show after authentication
Alrighty. I have a button (below) where I take some info from an app and I post it to the users FB feed.
It almost never works the first time. Them, it will usually work pretty well after that. What ...
1
vote
1answer
46 views
NSUserDefaults: registerDefaults — Adding a New Entry for a Version Upgrade
My app registers six default color palettes when installed, and the user can add an additional 30. In an upcoming release, I want to add a seventh color palette to the defaults. If I just add the ...
0
votes
3answers
49 views
How to remove all NSUser Defaults except two objects?
I am using a lot NSUserDefaults and i want every time the app starts to remove them except two objects is this somehow possible?
Any help appreciated
0
votes
1answer
70 views
[NSKeyedUnarchiver initForReadingWithData:]: data is NULL
Among the settings that I am saving to NSUserDefaults is a non-mandatory object that doesn't make sense to have an out-of-the-box default. Until the user sets a value for this object, the app ...
0
votes
3answers
35 views
How to store user-data correctly on iOS? Case with NSUserDefaults
I'm making an app for iOS devices. It's not my first app but it doesn't important. My app use NSUserDefaults to store data which are using during application runtime. All works good while user wants ...
-1
votes
3answers
35 views
Unexpected behaviour using NSUserDefaults with asynchronous UrlConnections
I have the following code for an asynchronous UrlConnections. If the request fails,
I add a NSStringto an a NSMutableArray that gets saved in the NSUserDefaults.
The first time it adds correctly, ...
1
vote
1answer
42 views
How to save textview font, size, color and alignment by NSUserDefaults?
How to allow app users to set font, size, color and alignment an application by custom setting? I am wondering if I can save an UIFont to the NSUserDefaults. How can I get around this issue?
1
vote
4answers
48 views
Mutable Objects inside NSUserDefaults
I created a simple database and put in NSUserDefaults. My database is NSMutableArray which has dictionaries and arrays inside in it. When I create NSMutableArray from NSUSerDefaults I can't add any ...
0
votes
3answers
25 views
How to include a mix of NSString and direct text input when setting an NSUserDefault?
I have a simple bit of code for which I can't seem to find the correct syntax:
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSString *savedPrefix = [defaults ...
0
votes
0answers
57 views
NSUserDefaults synchronize not saving on
I have a bug submitted by a tester that if he performs an action and then reboots his phone (by pressing the home and Sleep/Wake button down for a few seconds) the app is not persisting state.
I have ...
0
votes
1answer
22 views
How to embed a variable prefix in a NSUserDefault reference?
I have a bit of code that looks like this:
[defaults setObject:@"sample_3-2.aiff" forKey:@"mySample"];
But I really want to change the "sample" word in my value to a variable, which I guess would ...
0
votes
1answer
24 views
Why isn't my code able to embed an NSUserDefault call within a UIImage assignment?
I would like to set the .image property of a UIImage to a variable as specified by a NSUserDefault value. However, I am getting some error that doesn't make sense!
Here is my code:
NSString ...
0
votes
1answer
24 views
Modifications on objects in NSUserDefaults-bound NSArrayController not saving
In my project, I have an NSArrayController bound to save to a the application's standard defaults (NSUserDefaults). This in itself works perfectly - objects added are saved and restored as expected.
...
0
votes
0answers
67 views
Dates in UIDatepicker not displaying properly
I have UIDatepicker .I have few queries to ask
1.)When i tap on UIButton the dates in datepicker gets retuns to minimum value since i have given maximum and minimum value . In doing that function ...
-1
votes
1answer
64 views
Objective C: Show Hidden Button After Download and Keep It
I am trying to make an app that downloads PDF files from URL with asynchronous connection using the NSURLConnection then save it locally on the app and open it on iBooks using the ...
1
vote
2answers
66 views
Storing authentication tokens on iOS - NSUserDefaults vs Keychain?
Which is the place I should be storing tokens for when the user logins in to a service? I'm not saving passwords (obviously where I'd use the Keychain) but just the token. A lot of places say just use ...
0
votes
1answer
57 views
iOS data loss after update
My problem is that I have experienced data loss from NSUserDefaults and from Core Data after updating application. I that possible because of wrong path to NSDocumentsDirectory. Right now current path ...
0
votes
4answers
66 views
bad access after NSUserDefault synchronize
I have a UITableView with some data. Every cell has a button and if you press it you delete the cell selected. After that I have to save my data with NSUserDefault. Here some code:
- ...
0
votes
1answer
42 views
App does not update textfield from settings bundle but it does update settings from the app
Hi if i change the required field in the application, then log out and log into settings, the settings have been updated perfectly.
However if i then proceed to change the settings and then open the ...
0
votes
1answer
18 views
How to display history from UITextField using UILabels?
So I have 3 UITextFields in one view of my application and 5 labels in another view. The purpose of the app is for the user to input up to three lines of text and then make it do some cool animated ...
0
votes
2answers
58 views
iOS: What are the possible options to Reset an iOS apps Data without requiring a reinstall?
This is a iOS 101 question and I feel like an ass for not knowing the answer :-)
The question is - how do I reset an iOS app to the state it was when first installed?
The app stores content in ...
0
votes
4answers
104 views
Saving UITextField text in cell into NSUserDefaults?
I have seen every post that is close to this question, and still not finding something useful. I have textFields in every cell that is being used as a form for the user to fill out. Everything with ...
0
votes
1answer
41 views
NSUserDefaults won't delete object for key
When the user logs in to my application, I download a token from my JSON server and store it in NSUserDefaults, as such:
[[NSUserDefaults standardUserDefaults] setValue:token forKey:TOKEN];
When ...
0
votes
1answer
45 views
Update UILabel from NSUserDefaults
I am trying to save/load some data for my game (in this case, the # of tips the player has available to them). If they are playing the game for the first time, they get 10 tips to start with, ...
1
vote
1answer
54 views
NSUserDefaults working on device and simulator but returning NULL on device when installed via .ipa
I am encountering very strange problem.
I am saving users email and a encrypted key with [[NSUserDefaults standardUserDefaults] synchronize] for login to my webserver with my ipad app. This method ...
-2
votes
2answers
42 views
In App Purchase NSUserDefaults how to save [closed]
hi there i have followed a tutorial online for in app purchase and have gotten it to work perfect but the only problem is when i reopen the app i have to restore the purchase to make is display again
...
0
votes
2answers
49 views
Download images from web and save on iPhone
I have to download images from web and save them on iPhone and then use that images for views. Main problem is: how should I save that images on iPhone ? Which method should I use ? NSUserDefaults, ...
0
votes
0answers
13 views
NSUserDefaults synchronize within iOS Simulator
Shall I expect the same behavior as in a device? I have been doing some tests and it seems that in the device it takes longer to actually write the value.
0
votes
5answers
84 views
`NSUserDefaults` not saving float properly
I am building an application in which I want to save some user data by using NSUserDefaults, and it is a property of one of my controllers as following:
@property (nonatomic, strong) NSUserDefaults ...
0
votes
0answers
29 views
iOS: Better way to authenticate and scrape data?
I'm currently pulling in user data from a site where the user must authenticate before reaching the page where the data exists. I've managed to do so by using a combination of javascript injection ...
0
votes
1answer
19 views
How to set values in NSUserDefaults?
I have this:
NSMutableDictionary *responseDict = [responseString objectFromJSONString];
NSLog(@"%@" , [responseDict objectForKey:@"loginid"]);
and i want to put my "loginid" to ...
0
votes
1answer
59 views
Delete image thats stored in NSSUserDefaults
Im trying to give user option to delete an image picked from camera that is then saved in NSUserDefaults, then passed to another view. I cant seem to keep the image deleted. It deletes the image ...
0
votes
3answers
61 views
NSMutableArray not saved NSUserDefault
I'm trying to save a NSMutableArray with NSUSerDefault and then open the array.
Here some code:
-(IBAction)btnSave{
Class *aClass = [[Class alloc]init];
aClass.idClass=@"aaaxxx";
...



