gpt4 book ai didi

ios - 如何最好地子类化 NSManagedObject 以提供一组核心方法

转载 作者:行者123 更新时间:2023-11-29 12:21:51 25 4
gpt4 key购买 nike

我正在开发一个实现核心数据模型的典型 IOS 应用程序,我正在使用 XCode 为模型中的每个实体生成 NSManagedObjects 的基本集。

典型例子,这里没什么特别的:

//
// ContactKey.h

#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>

@class ContactAttribute;

@interface ContactKey : NSManagedObject

@property (nonatomic, retain) NSString * id;
@property (nonatomic, retain) NSString * keyDescription;
@property (nonatomic, retain) NSString * keyName;
@property (nonatomic, retain) NSSet *rContactAttribute;
@end

@interface ContactKey (CoreDataGeneratedAccessors)

- (void)addRContactAttributeObject:(ContactAttribute *)value;
- (void)removeRContactAttributeObject:(ContactAttribute *)value;
- (void)addRContactAttribute:(NSSet *)values;
- (void)removeRContactAttribute:(NSSet *)values;

@end

我创建了一个数据模型管理类,它“了解”应用正在使用的托管实体。它的标题片段如下所示:

#pragma mark Action

- (Annotation *) newAnnotation;
- (BOOL) addAnnotation:(Annotation *)newAnnotation;
- (BOOL) deleteAnnotation:(Annotation *)entry;
- (NSArray *) findAnnotations:(Annotation *)withMatchCriteria;
- (NSArray *) findAnnotations;
- (void) dumpAnnotations;

#pragma mark Appointment

- (Appointment *) newAppointment;
- (BOOL) addAppointment:(Appointment *)newAppointment;
- (BOOL) deleteAppointment:(Appointment *)entry;
- (NSArray *) findAppointments:(Appointment *)withMatchCriteria;
- (NSArray *) findAppointments;
- (void) dumpAppointments;

除了这会导致大量重复之外,这不是正确的对象设计。我意识到我需要将每个实体作为其自己的对象来处理。

如果我手动执行此操作,我会创建一个 NSManagedObject 的子类来实现我的核心方法,然后为每个实体创建子类,这样我就可以添加我想要的实体特定方法。

如您所知,每次修改模型并重新生成托管实体时,XCode 都会覆盖文件,因此这不是一个可行的解决方案。

将此代码重构为仍允许 XCode 根据需要重新生成实体定义的单个托管实体的最佳方法是什么?

最佳答案

该技术是通过子类化将领域/语义模型与 Core Data 对象图和存储完全分离。父类(super class)处理你的 CoreData 东西,重要的或有趣的领域方法被添加到子类中......但听起来你已经知道这一切了!有些工具可以为您提供帮助。

mogenerator ( github repo ) 可用于管理此过程。对于一次性的、简短的设置,它集成到您​​的构建中,检测模型的添加和更改,并为您生成所有支持模型(例如,动物模型产生 _Animal 自动生成的支持类以及核心数据助手等等),如果它尚不存在,它将为子类生成一个 stub 文件(例如,动物模型产生动物类)。然后,您将源代码管理配置为忽略支持文件,并提交子类/域类。

坦率地说,我喜欢 mogenerator。重写所有这些默认访问器和助手对我来说既不有趣也不有趣。

关于ios - 如何最好地子类化 NSManagedObject 以提供一组核心方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30404395/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com