Can you give more information how to delete game? Like slide left and press red button βdeleteβ
I made it:
Open GamePickerViewController.swift and
override func tableView(_ tableView: UITableView,
commit editingStyle: UITableViewCellEditingStyle,
forRowAt indexPath: IndexPath) {
games.remove(at: indexPath.row)
let indexPaths = [indexPath]
tableView.deleteRows(at: indexPaths, with: .automatic)
}
This tutorial is more than six months old so questions are no longer supported at the moment for it. Thank you!