我在调用UIView
时UITableCell
添加了一个accessoryView cellForRowAtIndexPath
。
cell.accessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"flechalinterna.png"]];
cell.accessoryView.backgroundColor=[UIColor clearColor];
但是当用户选择索引路径处的行时,附件视图不会突出显示。我试图避免将背景颜色设置为clearColor
,但它没有任何区别。获得此图像中显示的以下效果:
答案 0 :(得分:0)
尝试使用此
cell.accessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"flechalinterna.png"] highlightedImage:[UIImage imageNamed:@"flechalinterna.png"]];