我有一个 UIImageView 作为我的 UITableViewCell 子类的背景。我已将图像放在图像字段中,并将该图像的较轻版本放在突出显示字段中。在我的 UITableViewCell 子类中,我添加了代码以将该 ImageView 设置为突出显示,但没有任何变化......
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
self.backgroundImageView.highlighted = selected;
NSLog(@"selected: %d", selected);
}
我已验证 self.backgroundImageView 已正确连接为 IBOutlet。