We\'ve got a custom matrix class, and we\'re attempting to archive and unarchive an NSArray containing four of them. The first seems to get unarchived fine (we can see that initWithCoder is called onc
does anyone have 开发者_Python百科any examples of using NSKeyedArchiver in monotouch? i just want to store a list of pocos
I have converted CGPoint To NSValue and开发者_开发技巧 put all the resulting values in q NSArray but when I use [NSKeyedArchiver archiveRootObject:ArrayName toFile:PointArrayFile]; it gives me error.
When I use NSKeyedArchiver is the data that is written a *.plist, I have seen some examples where people have the output file down as *.txt or even without an extension a开发者_StackOverflow社区t all?
Example: If I used this, where does the iPhone store the file? if (![NSKeyedArchiver archiveRootObject:your_object toFile:@\"filename.plist\"])
I am a newbie in the iPhone dev and I want to know if I will save some data(NSSDictinary) with NSKeyedArchiver, tis data persist 开发者_运维技巧after an update process of my app via AppStore?
I need to archive a NSMutableArray which is being controlled by an ArrayController. I tried this: [NSKeye开发者_如何学运维dArchiver archivedDataWithRootObject:array];
I found a leak in my code where archiving and unarchiving an NSURLResponse was causing a leak, and I can\'t figure out why.
I\'m using a NSKeyedArchiver to encode a big object graph (76295 obje开发者_如何学编程cts.) It takes a lot of time but even worse the NSKeyedArchiver doesn\'t give back all its memory.
I was wondering whether or not it is possible to use t开发者_如何学运维he NSCoder method: - (void)encodeObject:(id)objv forKey:(NSString *)key