我使用界面构建器在我的视图上放置一个表格视图单元格,并添加附件类型,选择颜色并启用用户交互。
然而,当我点击单元格时没有任何反应。
为什么不突出整个细胞,如何实现这个目标?
答案 0 :(得分:2)
Selection
设置为Gray
或Blue
。以编程方式:将单元格selectionStyle
的属性设置为UITableViewCellSelectionStyleBlue
或UITableViewCellSelectionStyleGray
。
您还可以设置自定义选择颜色:
cell.selectedBackgroundView = [[[UIView alloc] init] autorelease];
cell.selectedBackgroundView.backgroundColor = [UIColor colorWithRed:CC(213) green:CC(221) blue:CC(232) alpha:1.0];