Tagged Questions
0
votes
3answers
43 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";
...
0
votes
2answers
51 views
NSMutableArray isn't adding my NSString
Im trying to add a NSString to an NSMutableArray and then make the array into NSData and save it with NSUserDefaults. But the array is always nil.
Here is my code:
- (void)viewDidLoad {
[super ...
0
votes
2answers
22 views
NSMutableArray in NSUserDefault
i've a problem with my table!
i use a parsing tableview but when i change view, my table loses data. So i decide to save all data to nsuserdefault; but, here the problem, NSUserDefault warns me:
...
0
votes
2answers
55 views
NSUserDefaults returning (null)
I'm a newcomer to NSUserDefaults and am struggling to get my head around something I imagine is probably straightforward for most reading this.
I'm trying to retrieve a mutable array of strings if it ...
0
votes
1answer
25 views
Saving and retrieving history iphone
In my app i am uploading various types of data such as image, audio, video, text. Now i want that user should be able to view the most recent 100 items uploaded even when he quits and reopens the app. ...
0
votes
1answer
508 views
Attempt to insert non-property value Objective C
Hi l am trying to create a fourates lists from an restaurants Object, my application has a list of different restaurants, l want the ability for users to add favourate restaurants, and this code is ...
3
votes
1answer
77 views
Crash on user default reads-really unusual [closed]
I have a crash without reason when reading from NSUserDefaults. The first time I read it its good . I get the data and its ok. The second time, I get a crash / I get empty value.
Things I have ...
1
vote
3answers
135 views
Storing an NSMutableArray of NSObjects into NSUserDefaults
I am currently writing an app for the iPhone, and one of the design requirements I need is to follow is the following:
Store NSObjects into a NSMutableArray, display data to a UITableView and save ...
0
votes
0answers
59 views
Can't addObject into a NSMutablearray in Assignment 4 of CS193P
I copy the Lesson 9 Demo " Favorites " about "userdefaults" code. but i found can't add object into the mutable array, so the table view datesource can't get the array.
this assignment is ask add the ...
-2
votes
5answers
496 views
Retrieving and re-saving an nsmutablearray to nsuserdefaults from a uitableview
I have a uitableview with a list of items populated from a JSON file located locally within the app. Everything works as far as getting the list to the table and the multiple selection of items which ...
1
vote
4answers
148 views
How can I pass a “MutableArray with full of Objects” to another class by using NSUserDefaults?
How can I pass a "MutableArray with full of Objects" to another class by using NSUserDefaults? I know how to pass "MutableArray"s but this does not work!
So;
I have a MutableArray; 'myCityObjects', ...
0
votes
4answers
107 views
Unable to retrive NSMutableArray from NSUserDefaults
I have an issue persisting data in local storage for an NSMutableArray containing a list of NSStrings.
I have a save method and a get method both appear to work when the app is running. However, once ...
2
votes
1answer
144 views
Unable to load data from NSUserDefaults when trying to display contents of table in iOS
I have an iOS app that stores two NSMutableArray's as objects in NSUserDefaults in the event that there is no WiFi or Data connectivity. On a subsequent visit, the user should be able to load the ...
0
votes
1answer
72 views
Why can I return a NSMutableArray from NSUserDefaults but not an NSMutableDictionary
I'm saving several items in NSUserDefaults in iOS 6. In the past I have always used an NSMutableArray that contains NSMutableDictionaries to save some info. But now I've decided it would be more ...
0
votes
0answers
71 views
How to realize a bookmark function in Xcode?
Hey there I try to make a bookmark function.
The user should have the possibility to save data of a webview in a table view list.
I have some variables like a titeland a code, they stand in relation ...
1
vote
1answer
192 views
NSUserDefaults and storing values
Hi I am trying to store an array into NSUserDefaults but I am having troubles. The method accepts an NSDictionary which I will store into an array that i will store into NSUSerDefaults. The problem is ...
0
votes
2answers
69 views
adding objects crash in ios
i am trying to add an object into a nsuserdefault, but i get this crash
"[__NSCFArray insertObject:atIndex:]: mutating method sent to immutable object"
its crashing on this line:
[currentFav ...
1
vote
2answers
578 views
Create an NSMutableArray that contains several NSMutableDictionary objects
I've looked around and seen several postings concerning sorting NSMutableArray's that contain NSDictionaries, but haven't been able to find some concrete examples of how to actually make an ...
1
vote
1answer
136 views
NSUserDefaults and saving size
I have an app that tracks a user as they drive along. It uses CLLocationManager and each time the didUpdateToLocation is called I save the CLLocation point.
A trip of around 25 miles yields ...
0
votes
1answer
95 views
Mutating method sent to Immutable object - Where?
Kind of stuck on this error.
Pretty basic error
2012-07-20 12:44:07.462 Picsilk[4286:17903] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[__NSCFArray ...
0
votes
4answers
264 views
NSUserDefaults with Custom object that has an array of custom objects
I have an object that I convert into NSData using an NSKeyedArchiver and then store it into NSUserDefaults. Everything gets saved correctly except for the elements of an array that the object has. All ...
1
vote
2answers
174 views
unable to save an NSMutableArray of image using persistent storage
I am trying to store an NSMutableArray of images using persistive storage but it is not storing it
here is my code
[imagingList addObject:image ]; //image is of type UIImage
...
0
votes
1answer
91 views
save and load NSMutableArray Fails
i am kind of new to saving NSMutableArray To NSUerdefaults.
here is the declaration of the iVar:
.h file
@interface GameData : NSObject {
NSMutableArray *PPLayers;
}
@property (nonatomic,retain) ...
0
votes
2answers
896 views
Add Array To MutableArray
Thanks for you time and reading this. What I'm trying to do is figure out why this NSLog is telling me the array is always null, no matter what. I'm thinking that the problem is that I'm initiating ...
-1
votes
2answers
242 views
Not adding object to NSMutableArray
Would love som help with this problem I'm having with objects that wont be added to arrays.
- (IBAction)done:(id)sender{
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
...
0
votes
2answers
210 views
NSUserDefaults won't store my NSStrings
i've tried to store a couple of strings in my NSUserDefaults... can't figure out what i'm doing wrong...
-(IBAction)addToFavorite:(id)sender {
NSMutableArray* favoritedAlready = [[[NSUserDefaults ...
1
vote
2answers
963 views
Check if NSString/NSMutableArray already exists in a NSUserDefault?
I'm making this app with a tableview and stuff. I want to make a "Favorites"-tab, and in the detail-view I want to make a star-like button. I'm done with the "add to favorites" stuff and want to make ...
0
votes
2answers
1k views
Unable to save NSMutableArray in NSUserDefaults
I am trying to save an NSMutableArray on device , but everytime I reload the application the data is erased.
I tried to use NSUserDefaults but the problem persists
here is the code I am using
...
1
vote
1answer
265 views
NSMutableArray addObject: giving Error
Here is the code what I am trying..
but the thing is when I load the view first time it works.. doesn't give any problem..
but when i try to load view again and call this code.. it gives error on ...
0
votes
3answers
395 views
NSUserdefaults works on Simulator but not on Device
I would like to save an NSArray to NSUSerDefaults. If I do it on Simulator everything works, if I do it on Device, it doesnt work.
NSArray *Test1 = [Daten copy];
NSArray *Test2 = [Kosten copy];
...
0
votes
1answer
106 views
Efficiency: NSUserDefaults vs loading/saving an NSMutableDictionary
I have a bunch of game data (10 integers) I need to save and load.
Is it more efficient to use a NSMutableDictionary, add the items and save it, or to save each item into ...
0
votes
1answer
251 views
Save NSMutableArray with NSUserDefaults
i'm french so maybe i'll make some mistakes, sorry about that :D
I explain my problem, I have a XMLParser who generates NSString (title, category, url, ...), I would like the stream that is generated ...
2
votes
3answers
1k views
What is the best way to save an NSMutableArray to NSUserDefaults?
I have a custom object called Occasion defined as follows:
#import <Foundation/Foundation.h>
@interface Occasion : NSObject {
NSString *_title;
NSDate *_date;
NSString *_imagePath;
}
...
0
votes
1answer
680 views
Storing custom objects in NSUserDefaults
I am trying to save an object in NSUserDefaults but i have not been successful in it. Scenario is that, I have an object syncObject of class SyncObjct. I have implemented following methods in ...
3
votes
2answers
2k views
NSMutableArray adding/removing objects + NSUserDefaults
I want to make a "Favorites" in my RSS reader. My RSS parser is parsing a RSS feed to NSMutableArray, and then object "item" is created from part of my rss (selected post).
My code:
//Creating ...
0
votes
1answer
1k views
NSMutableArray stored in NSUserDefaults won't save data
When a user signs in through my iPhone app, I create a bunch of default elements in the NSUserDefaults. One of these is an NSMutableArray that I add the following way:
NSUserDefaults *prefs = ...
1
vote
1answer
833 views
IOS and Objective C - How to display an NSMutableArray of NSDictionaries in NSUserDefaults in Tableview?
Basically I have an NSMutableArray of NSDictionaries stored to NSUserDefaults.
I have implemented tableview into my app but I am not sure how to display the individual values. I know that I am not ...
2
votes
2answers
335 views
IOS: problem with an NSMutableArray
I have this code;
for (int i = 0; i<period+1; i++){
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"dd/MM/yyyy"];
NSDate *newData = ...
1
vote
1answer
386 views
NSUserDefaults and Conditional Encoding of Custom Objects in an NSArray
I know there are a lot of posts out there concerning the problem of how to archive custom objects in an NSArray or NSMutableArray and save them in NSUserDefaults. Conforming to the NSCoding Protocol ...
3
votes
2answers
2k views
Storing NSMutableArray with NSUserDefaults
In my project I use an NSMutableArray in my app delegate with NSUserDefaults:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
array = ...
0
votes
1answer
2k views
fill tableview with mutable array
i've got a nsmutablearray which is filled by the user:
NSString *_string = _text.text;
[_array addObject:_string];
[self saveIt];
_text.text = @"";
_text is a textField, _array is a nsmutablearray
...
0
votes
1answer
563 views
Store data from TableView in the NSUserDefaults
if got a tableview and the user can add strings into it:
-(IBAction)textFieldDidEndEditing {
NSString *string = textField.text;
[tableArray addObject:string];
[mainTableView reloadData];
...
5
votes
4answers
4k views
insert object in an NSMutableArray saved with NSUserDefaults
I have an NSMutableArray saved with NSUserDefaults.
This array is my "favourite" items that the user can saves, so when i want to add one item, i need to read the array (from NSuserDefault) and save ...
3
votes
1answer
2k views
The proper way to use NSUserDefaults?
I have a problem that I can't get my head around, and am hoping someone could give me a hint or help.
I have a table, which contains 7 objects. When pressing one of the object the user is presented ...
0
votes
2answers
628 views
Storing NSMutableArray of UIViews in NSUserDefaults
I have read several posts about this but I'm not able to fix the error. If someone could please help.
Here is the code I use. I have an NSMutableArray called list.
-(void) awakeFromNib
{
...
0
votes
2answers
1k views
Storing NSMutableArray filled with costum objects in NSUserDefaults - crash
EDIT: Here is a working version. I was able to retrieve my object within the NSMUtableArray after I saved and loaded it from the NSUserDefaults via NSCoding. I think it's important to mention, that ...
1
vote
3answers
2k views
NSUserDefaults NSMutable Array Not Saving Between Sessions
I have an NSMutableArray stored in NSUserDefaults. The mutable array is properly edited and the results of the edit can be viewed with:
NSLog(@"%@", [[NSUserDefaults standardUserDefaults] ...
3
votes
3answers
7k views
Saving NSMutableArray to NSUserDefaults using NSKeyedArchiver
I'm having trouble retrieving a saved NSMutableArray containing a custom object. The app crashes and the console reports http://pastie.org/1226822. Here is my objects .h file ...
0
votes
1answer
927 views
How to save an NSMutableArray containing NSMutableArrays of custom objects in NSUserDefaults
I was able to save an NSMutableArray of custom objects to NSUserDefaults by implementing NSCoding in the custom class. However, now I want to save an NSMutableArray of these arrays. The compiler ...
0
votes
1answer
309 views
How to store Fetch results in Application's plist file?
I'm querying rows from my sqlite database using Fetch and loading the results into a NSMutableArray myDataArray. What I want to do is to store the values in myDataArray into my application's ...


