I have a password field with text "Password" and when user clicks, it gets cleared. Moreover I want to set the type of this textfield as secure but this doesn´t work.
- (void)textFieldDidBeginEditing:(UITextField *)textField{
if ([textField.text isEqualToString:@"Password"] || [textField.text isEqualToString:@"Email"])
{
textField.text = @"";
textField.secureTextEntry = YES;
}
}