问题
I have a custom object called Occasion defined as follows:
#import <Foundation/Foundation.h>
@interface Occasion : NSObject {
NSString *_title;
NSDate *_date;
NSString *_imagePath;
}
@property (nonatomic, retain) NSString *title;
@property (nonatomic, retain) NSDate *date;
@property (nonatomic, retain) NSString *imagePath;
Now I have an NSMutableArray of Occasions which I want to save to NSUserDefaults. I know it's not possible in a straight forward fashion so I'm wondering which is the easiest way to do that? If serialization is the answer, then how? Because I read the docs but couldn't understand the way it works fully.
回答1:
You should use something like NSKeyedArchiver
to serialize the array to an NSData
, save it to the NSUserDefaults
and then use NSKeyedUnarchiver
to deserialize it later:
NSData *serialized = [NSKeyedArchiver archivedDataWithRootObject:myArray];
[[NSUserDefaults standardUserDefaults] setObject:serialized forKey:@"myKey"];
//...
NSData *serialized = [[NSUserDefaults standardUserDefaults] objectForKey:@"myKey"];
NSArray *myArray = [NSKeyedUnarchiver unarchiveObjectWithData:serialized];
You will need to implement the NSCoding
protocol in your Occasion
class and correctly save the various properties to make this work correctly. For more information see the Archives and Serializations Programming Guide. It shouldn't be more than a few lines of code to do this. Something like:
- (void)encodeWithCoder:(NSCoder *)coder {
[super encodeWithCoder:coder];
[coder encodeObject:_title forKey:@"_title"];
[coder encodeObject:_date forKey:@"_date"];
[coder encodeObject:_imagePath forKey:@"_imagePath"];
}
- (id)initWithCoder:(NSCoder *)coder {
self = [super initWithCoder:coder];
_title = [[coder decodeObjectForKey:@"_title"] retain];
_date = [[coder decodeObjectForKey:@"_date"] retain];
_imagePath = [[coder decodeObjectForKey:@"_imagePath"] retain];
return self;
}
回答2:
NSUserDefaults
is intended for user preferences, not storing application data. Use CoreData or serialize the objects into the documents directory. You'll need to have your class implement the NSCoding
protocol for it to work.
1) Implement NSCoding
in Occasion.h
@interface Occasion : NSObject <NSCoding>
2) Implement the protocol in Occasion.m
- (id)initWithCoder:(NSCoder *)aDecoder {
if (self = [super init]) {
self.title = [aDecoder decodeObjectForKey:@"title"];
self.date = [aDecoder decodeObjectForKey:@"date"];
self.imagePath = [aDecoder decodeObjectForKey:@"imagePath"];
}
return self;
}
- (void)encodeWithCoder:(NSCoder *)aCoder {
[aCoder encodeObject:title forKey:@"title"];
[aCoder encodeObject:date forKey:@"date"];
[aCoder encodeObject:imagePath forKey:@"imagePath"];
}
3) Archive the data to a file in documents directory
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0];
NSString *path= [documentsPath stringByAppendingPathComponent:@“occasions”];
[NSKeyedArchiver archiveRootObject:occasions toFile:path];
4) To unarchive...
NSMutableArray *occasions = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
回答3:
You could implement NSCoding
in Occasion
.
You then use [NSKeyedArchiver archivedDataWithRootObject:myArray]
to create an NSData
object from the array. You can put this into user defaults.
来源:https://stackoverflow.com/questions/7743450/what-is-the-best-way-to-save-an-nsmutablearray-to-nsuserdefaults