选择行时,附件视图图像未突出显示

时间:2013-05-22 10:27:44

标签: ios xcode uitableview

我在调用UIViewUITableCell添加了一个accessoryView cellForRowAtIndexPath

cell.accessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"flechalinterna.png"]];
cell.accessoryView.backgroundColor=[UIColor clearColor];

但是当用户选择索引路径处的行时,附件视图不会突出显示。我试图避免将背景颜色设置为clearColor,但它没有任何区别。获得此图像中显示的以下效果:

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试使用此

cell.accessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"flechalinterna.png"] highlightedImage:[UIImage imageNamed:@"flechalinterna.png"]];