diff --git a/iOS/ShowDetailsController.m b/iOS/ShowDetailsController.m index 986cc8c..6c1c6ee 100644 --- a/iOS/ShowDetailsController.m +++ b/iOS/ShowDetailsController.m @@ -44,7 +44,7 @@ clearNSMutableString(NSMutableString *string) * replaces that character in memory, and thus allows us to zero the * password. */ - for (NSUInteger i = 0 ; i < string.length; i++) + for (NSUInteger i = 0; i < string.length; i++) [string replaceCharactersInRange: NSMakeRange(i, 1) withString: @" "]; } @@ -89,13 +89,6 @@ clearNSMutableString(NSMutableString *string) animated: YES]; } -- (void)viewDidAppear: (BOOL)animated -{ - [super viewDidAppear: animated]; - - [self.passphraseField becomeFirstResponder]; -} - - (BOOL)textFieldShouldReturn: (UITextField *)textField { [textField resignFirstResponder];