I have a button that toggles between Show/Hide mode (i.e. toggles a UITextField between secureTextEntry NO and YES). The purpose of which is to allow the user to see the pa
You can fix it like this:
NSString *currentText = self.textfield.text; self.textfield.text = @""; self.textfield.text = currentText;