我正在同一个ViewController中创建一个带有两个TableView的应用程序,并且需要能够从每个中删除单个单元格,但它们正在相互删除单元格。如何将其转换为if else语句或以任何其他方式将两个TableView分开?
func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath)
{
if editingStyle == UITableViewCellEditingStyle.Delete
{
colleges.removeAtIndex(indexPath.row)
tableViewOutlet.reloadData()
}