1. 밀어서 셀 삭제하기 func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) { if editingStyle == .delete{ TYBucket.dummyTYB.remove(at: indexPath.row) tableView.deleteRows(at: [indexPath], with: .bottom) print(TYBucket.dummyTYB.endIndex) } } 생각보다 너무나 간단하게 끝났다!! 셀을 밀어서 삭제하는 경우, TYBucket의 dummyTYB에서 해당 인덱스의 데이터를 사용한 후 테이블 뷰의 해당 indexPath ..