Skip to content

Instantly share code, notes, and snippets.

@chriswebb09
Created May 11, 2017 09:09
Show Gist options
  • Save chriswebb09/aa33586d045c1540fe7104d750889492 to your computer and use it in GitHub Desktop.
Save chriswebb09/aa33586d045c1540fe7104d750889492 to your computer and use it in GitHub Desktop.
Main View Intro
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