我对自定义注释对象的持久存储感兴趣
CustomAnnotation : NSObject <MKAnnotation>
它具有以下属性
@property (nonatomic, assign) CGFloat val1;
@property (nonatomic, retain) NSString *val2;
@property (nonatomic, retain) NSDate *val3;
@property (nonatomic, retain) NSURL *val4;
@property (nonatomic, assign) double val5;
@property (nonatomic, assign) double val6;
存储数据的最佳方法是什么?我正在考虑使用 NSUserDefaults,但我需要将我的 CustomAnnotation 归档到 NSData 中吗?你是怎样做的?
谢谢!