您可以使用indexPath.section来决定要设置的部分,但是您应该tableView:canEditRowAtIndexPath:indexPath:
在要启用编辑时告诉表视图.
斯威夫特2
override func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool{ return indexPath.section == 0 }
斯威夫特3
func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool { return indexPath.section == 0 }