首先设置cell
cell.accessoryType = UITableViewCellAccessoryNone;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
其次是
if (tableView == self.tableView) {
if (indexPath.section <3) {
return;
}
本文共 242 字,大约阅读时间需要 1 分钟。
首先设置cell
cell.accessoryType = UITableViewCellAccessoryNone;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
其次是
if (tableView == self.tableView) {
if (indexPath.section <3) {
return;
}
转载于:https://my.oschina.net/u/2329800/blog/509136