我有一个从 xcdatamodeld 生成的核心数据类 ZSShotCD(是的,我已经在模型中正确设置了该类)。我不想把任何自定义方法放在那里,因为我可能需要在某个时候重新生成,所以我将它子类化为 ZSShot。以下是一些相关位:
一、生成的类:
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@interface ZSShotCD : NSManagedObject
@property (nonatomic, retain) NSString * shotDescription;
@property (nonatomic, retain) NSString * shotType;
@end
.m 文件是您所期望的,其中包含一组属性的 @dynamic 声明。我根本没有搞砸过。
现在是子类 - ZSShot.h:
#import <Foundation/Foundation.h>
#import "ZSShotCD.h"
@interface ZSShot : ZSShotCD
- (NSString *)MainText;
@end
还有.m文件:
#import "ZSShot.h"
@implementation ZSShot
- (NSString *)MainText
{
NSString *mainText = [NSString stringWithFormat"%@ %@", [self valueForKey"shotType"], [self valueForKey"shotDescription"]];
return mainText;
}
当我尝试在 ZSShot 实例上调用 MainText 方法时,如下所示:
cell.shotDescriptionLabel.text = [item MainText];
我明白了:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[ZSShotCD MainText]: unrecognized selector sent to instance 0x8d130c0'
该实例(单元格)对实体中定义的属性没有问题,(它可以很好地从核心数据中提取数据)并且我使用的代码与其他实体上构建的类上使用的代码基本相同 -唯一的区别是我尝试使用子类中定义的方法。
有人能解释一下吗?
您需要为您的 xxx.xcdatamodeld 中的实体设置类,如下所示:
(UserInfo 是 UserBase 的子类,是一个 NSManagedObject 类。)
或者你会得到一个基类的实例,它没有你调用的方法。
关于ios - NSManagedObject 子类 - 发送到实例的无法识别的选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23050477/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |