我创建了一个自定义类对象Action,其中包含三个枚举作为实例变量:
@interface Action : NSObject <NSCopying>
@property ImageSide imageSide; //typedef enum
@property EyeSide eyeSide; //typedef enum
@property PointType pointType; //typedef enum
@property int actionId;
- (id) initWithType:(int)num eyeSide:(EyeSide)eyes type:(PointType)type imageSide:(ImageSide)image;
@end
有了这个实现:
@implementation Action
@synthesize imageSide;
@synthesize eyeSide;
@synthesize pointType;
@synthesize actionId;
- (id) initWithType:(int)num eyeSide:(EyeSide)eyes type:(PointType)type imageSide:(ImageSide)image {
// Call superclass's initializer
self = [super init];
if( !self ) return nil;
actionId = num;
imageSide = image;
eyeSide = eyes;
pointType = type;
return self;
}
@end
在我的ViewController中,我尝试将其添加为NSMutableDictionary对象的键,如下所示:
Action* currentAction = [[Action alloc] initWithType:0 eyeSide:right type:eye imageSide:top];
pointsDict = [[NSMutableDictionary alloc] initWithCapacity:20];
[pointsDict setObject:[NSValue valueWithCGPoint:CGPointMake(touchCoordinates.x, touchCoordinates.y)] forKey:currentAction];
但是,当调用setObject时,我收到此错误:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Action copyWithZone:]: unrecognized selector sent to instance
我在SO中找到了与此错误相关的一些答案,但似乎没有人能解决这个问题,因为我是iOS开发的新手,我对此感到非常困惑。
答案 0 :(得分:1)
您声明您的Action
类符合NSCopying
协议。
因此,您需要为该课程实施-(id)copyWithZone:(NSZone *)zone
。
答案 1 :(得分:1)
您在可变字典中用作关键字的对象必须符合Apple文档here
中所述的NSCopying
协议(因此copyWithZone:
必须实施)
在您的情况下,您将对象声明为与NSCopying
协议相对应,但您没有实现该方法。你需要。
希望这有帮助