tableView选中状态编辑

cell.selectionStyle = UITableViewCellSelectionStyleNone;

这个属性是枚举值 

typedef NS_ENUM(NSInteger, UITableViewCellSelectionStyle) {

    UITableViewCellSelectionStyleNone,

    UITableViewCellSelectionStyleBlue,

    UITableViewCellSelectionStyleGray,

    UITableViewCellSelectionStyleDefault NS_ENUM_AVAILABLE_IOS(7_0)

};

剩下选择自行尝试
上一篇:利用python处理网页信息


下一篇:关于php上传文件的限制