UITableView cell 被选中效果

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

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

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

你可能感兴趣的:(UITableView)