I\'ve searched everywhere and can\'t seem to find a clear answer on updating a label in real-time.
How do i go about updating a UILabel (real-time) with
UILabel
You are update your label in textField shouldChangeCharactersInRange Delegate method :
shouldChangeCharactersInRange
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool { // Update Your label here...... YourLabel.text = textField.text return true }