I\'m trying to show changes made to a UITextField on a separate UILabel. Is there a way to capture full text of the UITextField after
UITextField
UILabel
Swift with addTarget Swift 2.0+
titleTextField.addTarget(self, action: #selector(textFieldTyping), forControlEvents: .EditingChanged)
And implement selector
selector
func textFieldTyping(textField:UITextField) { //Typing }