我正在尝试设置我的imageview:
detailedEventViewController.thumbnail.image = [UIImage imageNamed:@"amnesia.png"];
但得到错误:
2011-01-08 09:53:24.153 HD Pocket Vacations[24697:207] -[DetailedEventViewController thumbnail]: unrecognized selector sent to instance 0x624d820
2011-01-08 09:53:24.247 HD Pocket Vacations[24697:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[DetailedEventViewController thumbnail]: unrecognized selector sent to instance 0x624d820'
我的网点已正确连接。
答案 0 :(得分:1)
“thumbnail”属性一定有问题。
因此,您需要检查:
是否已在界面和实施文件中正确定义和合成。
是否是UIImageView。
上述所有内容的拼写。