pull/1/head
Frederic Jacobs 10 years ago
parent 1550c61216
commit 61ab11d45c

@ -299,7 +299,7 @@
confirmMessage = [confirmMessage stringByAppendingString:NSLocalizedString(@"QUESTIONMARK_PUNCTUATION", @"")];
}
__block UIAlertController *alertController = [UIAlertController
UIAlertController *alertController = [UIAlertController
alertControllerWithTitle:NSLocalizedString(@"CONFIRMATION_TITLE", @"")
message:confirmMessage
preferredStyle:UIAlertControllerStyleAlert];
@ -338,7 +338,12 @@
sendTextButton.hidden = YES;
self.searchController.searchBar.text = @"";
[self presentViewController:alertController animated:YES completion:[UIUtil modalCompletionBlock]];
[self dismissViewControllerAnimated:YES
completion:nil];
[self presentViewController:alertController
animated:YES
completion:[UIUtil modalCompletionBlock]];
}
#pragma mark - SMS Composer Delegate

Loading…
Cancel
Save