Created
May 11, 2017 09:16
-
-
Save chriswebb09/205d49c3478edf67ab5bce09de797e2c 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
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