概要
編集モードをユーザーが選ぶことなしに、常に並び替え(ソート)ができるUITableViewを実装したメモです。
スクリーンショット
ソースコード
class ViewController: UIViewController {
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
tableView.isEditing = true
tableView.allowsSelectionDuringEditing = true
}
}
extension ViewController: UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 10
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell()
cell.textLabel?.text = "Item \(indexPath.row)"
return cell
}
func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
return true
}
func tableView(_ tableView: UITableView, moveRowAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {
// TODO: 入れ替え時の処理を実装する(データ制御など)
}
}
extension ViewController: UITableViewDelegate {
func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCellEditingStyle {
return .none
}
func tableView(_ tableView: UITableView, shouldIndentWhileEditingRowAt indexPath: IndexPath) -> Bool {
return false
}
}
ポイント
- viewDidLoadで
tableView.isEditing = true
を呼ぶ -
canMoveRowAt
やmoveRowAt
を実装すると、並び替えができるようになる -
editingStyleForRowAt
やshouldIndentWhileEditingRowAt
で見た目を制御 - Cellをタップ選択できるようにするには、
tableView.allowsSelectionDuringEditing = true
をviewDidLoadで読んでおく
以上で編集モードをユーザーが選ぶことなしに、Cellの並び替えがいつでもできるTableViewができました。