NSDictionary objectForKey抛出异常

时间:2010-08-09 19:33:07

标签: iphone objective-c

我在Objective-C中构建了一个XML解析器,而消息objectForKey抛出了一个NSException,但我不知道为什么。

aPicture = [[Picture alloc] init];

aPicture.pictureID = [[attributeDict objectForKey:@"id"] integerValue];

以下是我不理解的异常消息:

2010-08-09 21:27:32.223 rh[6375:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Picture setPictureID:]: unrecognized selector sent to instance 0x592e0b0'

1 个答案:

答案 0 :(得分:-1)

经过长时间的搜索,我弄错了... 我忘了合成图片ID选择器了。

....