0

我需要将 CLRegion 添加到我的核心数据实体中,但我没有为它选择什么类型。

我阅读了这个文档,但我仍然对如何正确设置它感到困惑。如果有人可以提供解释,我将不胜感激。

4

1 回答 1

1

对于 CLRegion 的实体属性类型,选择“Transformable”,然后定义 Core Data 为您生成的 NSManagedObject 中的对象是什么。(见下方位置)

@interface Person : NSManagedObject
{
}

@property (nonatomic, retain) NSString * firstName;
@property (nonatomic, retain) NSString * lastName;

@property (nonatomic, retain) CLRegion * location;

@end

@implementation Person

@dynamic firstName;
@dynamic lastName;

@dynamic location;

@end
于 2012-08-07T18:40:52.370 回答