I\'m using the code below to try and have textField2\'s text content get updated to match textField1\'s whenever the user types in textField1
textField2
textField1
This is the code you need,
if ([textField isEqual:self.textField1]) textField2.text = [textField1.text stringByReplacingCharactersInRange:range withString:string];