処理としては上記のようにフラグを true にするだけでできる。 選択したものにチェックマークをつけたい場合は下記も実装。 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) // ここ cell.accessoryType = tableView.indexPathsForSelectedRows?.contains(indexPath) == true ? .checkmark : .none cell.selectionStyle = .none // 選択時に背景色を変えないため r