//设置选中的方式。一共有三种。
cell.selectionStyle = UITableViewCellSelectionStyleNone;

//三种效果
typedef enum {
    UITableViewCellSelectionStyleNone,
    UITableViewCellSelectionStyleBlue,
    UITableViewCellSelectionStyleGray
} UITableViewCellSelectionStyle;

//选中后的字体颜色设置
 cell.resultTableContent.highlightedTextColor = [UIColor blackColor];

相关文章:

  • 2022-12-23
  • 2021-08-12
  • 2021-06-29
  • 2021-09-07
  • 2021-11-10
  • 2022-12-23
  • 2022-02-23
  • 2021-08-30
猜你喜欢
  • 2022-12-23
  • 2021-06-19
  • 2021-04-16
  • 2022-12-23
  • 2021-11-13
  • 2022-12-23
相关资源
相似解决方案