Created
September 13, 2018 18:05
-
-
Save rockbruno/4ebd574ebce3a2d650ec1f4c3d345001 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
final class MyViewController: UIViewController { | |
override func loadView() { | |
let myView = MyView() | |
myView.delegate = self | |
view = myView | |
} | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
print(view) // Uma instância de 'MyView'! | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment