Implemented the "tableView(_: didSelectAt: )" function in the LocationsListViewController view controller.

This commit is contained in:
Javier Cicchelli 2023-04-13 00:49:09 +02:00
parent ac39e943db
commit efbce8dda8

View File

@ -104,7 +104,20 @@ extension LocationsListViewController: UITableViewDataSource {
// MARK: - UITableViewDelegate
extension LocationsListViewController: UITableViewDelegate {}
extension LocationsListViewController: UITableViewDelegate {
// MARK: Functions
func tableView(
_ tableView: UITableView,
didSelectRowAt indexPath: IndexPath
) {
viewModel.openWikipedia(at: indexPath)
tableView.deselectRow(at: indexPath, animated: true)
}
}
// MARK: - Helpers