Created
May 11, 2017 09:09
-
-
Save chriswebb09/aa33586d045c1540fe7104d750889492 to your computer and use it in GitHub Desktop.
Main View Intro
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
class MainViewController: UIViewController { | |
@IBOutlet var mainView: MainView! | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
mainView.myButton.addTarget(self, action: #selector(buttonTap), for: .touchUpInside) | |
} | |
func buttonTap() { | |
print("Button was tapped") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment