Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I save NSArray in NSUserDefaults and then load it back in an NSMutableArray to populate the UIPickerView?

Also the issue is that new values would be added to that NSMutableArray and then that array will be converted to NSArray to be saved in NSUserDefaults (as NSMutableArray can't be saved in NSUserDefaults).

Any help appreciated..

Thanks

share|improve this question
1  
NSMutableArray can be stored since it inherits properties of NSArray. – Aadhira Feb 9 '12 at 14:18
how it can be achieved? I have searched on web but haven't got any tutorial related to this... – iError Feb 9 '12 at 14:21

4 Answers

up vote 15 down vote accepted
 [[NSUserDefaults standardUserDefaults] setObject:yourMutableArray forKey:@"Key"];

Mutable array can be stored since it is a subclass o NSarray.

To get the value in NSMutableArray,

NSMutableArray *array = [NSMutableArray arrayWithArray:[[NSUserDefaults standardUserDefaults] objectForKey:@"Key"]];

Hope this is helpful.

share|improve this answer
Thanx Vignesh, But what if some string value is changed like if there is a value in the array "one the road" and it gets updated as "on the road rite now" then how can we handle this, so that the same string would be updated in nsuserdefaults too, because the next time new updated array will be populated in picker view. is it possible – iError Feb 9 '12 at 14:39
@illoGicalError. Welcome.You will have to update your NSUserDefaults with the modified array. You can store the updated array using first line of code. – Vignesh Feb 9 '12 at 14:44
// Store it
[[NSUserDefaults standardUserDefaults] setObject:yourMutableArray forKey:@"Key"];

// Read it back
NSMutableArray* myMutableArrayAgain = [NSMutableArray arrayWithArray:[[NSUserDefaults standardUserDefaults] objectForKey:@"Key"]];
share|improve this answer

To convert from NSArray to NSMutableArray:

[array mutableCopy];

To convert from NSMutableArray to NSArray:

[NSArray arrayWithArray:array];

Edit: mutableCopy will need a release later, since it is a copy.

share|improve this answer

Obtain NSMutableArray instance using [[NSMutableArray alloc] initWithArray:] after recovering NSArray from NSUserDefaults.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.