Skip to content

Instantly share code, notes, and snippets.

@rlnucci
Last active May 28, 2020 21:34
Show Gist options
  • Select an option

  • Save rlnucci/a68397c332e500610aad5148e7fd121c to your computer and use it in GitHub Desktop.

Select an option

Save rlnucci/a68397c332e500610aad5148e7fd121c to your computer and use it in GitHub Desktop.
protocol ButtonDelegate: AnyObject {
func buttonDidTouched(data: String)
}
extension ExampleViewController: ButtonDelegate {
func buttonDidTouched(data: String) {
let nextScene = NextViewController(data: data)
self.navigationController?.pushViewController(nextScene, animated: true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment