Tips:cell的选中类型修改

//无色  
cell.selectionStyle = UITableViewCellSelectionStyleNone;  

typedef NS_ENUM(NSInteger, UITableViewCellSelectionStyle) {
    UITableViewCellSelectionStyleNone,
    UITableViewCellSelectionStyleBlue,
    UITableViewCellSelectionStyleGray,
    UITableViewCellSelectionStyleDefault NS_ENUM_AVAILABLE_IOS(7_0)
};
原文地址:https://www.cnblogs.com/hanyutong/p/5219511.html