Last active
May 28, 2020 21:34
-
-
Save rlnucci/a68397c332e500610aad5148e7fd121c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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