摘要:
UITableView的一些常用操作--------------------------------------------------------------------------------------------// 隐藏TableView中cell之间的分割线tableView.separatorStyle = UITableViewCellSeparatorStyleNone;// 隔行显示不同的颜色if (indexPath.row % 2 == 1){ cell.backgroundColor = ......;}else{ cell.backgroundColor = ... 阅读全文