Skip to content

Instantly share code, notes, and snippets.

@chriswebb09
Created May 11, 2017 09:16
Show Gist options
  • Save chriswebb09/205d49c3478edf67ab5bce09de797e2c to your computer and use it in GitHub Desktop.
Save chriswebb09/205d49c3478edf67ab5bce09de797e2c to your computer and use it in GitHub Desktop.
class MainViewController: UIViewController {
@IBOutlet var mainView: MainView!
override func viewDidLoad() {
super.viewDidLoad()
mainView.delegate = self
}
}
extension MainViewController: MainViewDelegate {
func searchButtonTappedWithTerm(with searchTerm: String) {
print("The text in UITextField is: \(searchTerm)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment