问题设置UIImageView图像

时间:2011-01-08 16:57:46

标签: iphone objective-c cocoa-touch uiimageview uiimage

我正在尝试设置我的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'

我的网点已正确连接。

1 个答案:

答案 0 :(得分:1)

“thumbnail”属性一定有问题。

因此,您需要检查:

  1. 是否已在界面和实施文件中正确定义和合成。

  2. 是否是UIImageView。

  3. 上述所有内容的拼写。