Skip to content

Instantly share code, notes, and snippets.

@laevandus
Created May 30, 2018 04:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laevandus/84082759adf2258937e188ec64756801 to your computer and use it in GitHub Desktop.
Save laevandus/84082759adf2258937e188ec64756801 to your computer and use it in GitHub Desktop.
@IBAction func goToList(_ sender: Any) {
scenePresenter?.presentPlanetList()
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
scenePresenter?.presentDetailedInfo(for: planets[indexPath.row])
}
@IBAction func show(_ sender: Any) {
scenePresenter?.presentURL(planet.url)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment