tableview 取消点击状态 去除分割线

来源:互联网 发布:三毛从军记 知乎 编辑:程序博客网 时间:2024/05/16 04:55


去除分割线

  tableView.separatorStyle =UITableViewCellSeparatorStyleNone;


取消点击状态

  cell.selectionStyle =UITableViewCellSelectionStyleNone;


0 0