This commit is contained in:
Jae Lim 2017-02-01 11:16:13 -08:00
Родитель 3c5a40f1f4
Коммит 5ddf099d52
2 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -47,19 +47,19 @@
MSAlertController *alertController = [MSAlertController alertControllerWithTitle:NSLocalizedStringFromTable(@"crash_alert_title", @"Main", @"")
message:NSLocalizedStringFromTable(@"crash_alert_message", @"Main", @"")];
// Add a "No"-Button and callthe notifyWithUserConfirmation-callback with MSUserConfirmationDontSend
// Add a "No"-Button and call the notifyWithUserConfirmation-callback with MSUserConfirmationDontSend
[alertController addCancelActionWithTitle:NSLocalizedStringFromTable(@"crash_alert_do_not_send", @"Main", @"")
handler:^(UIAlertAction *action) {
[MSCrashes notifyWithUserConfirmation:MSUserConfirmationDontSend];
}];
// Add a "Yes"-Button and callthe notifyWithUserConfirmation-callback with MSUserConfirmationSend
// Add a "Yes"-Button and call the notifyWithUserConfirmation-callback with MSUserConfirmationSend
[alertController addDefaultActionWithTitle:NSLocalizedStringFromTable(@"crash_alert_send", @"Main", @"")
handler:^(UIAlertAction *action) {
[MSCrashes notifyWithUserConfirmation:MSUserConfirmationSend];
}];
// Add a "No"-Button and callthe notifyWithUserConfirmation-callback with MSUserConfirmationAlways
// Add a "No"-Button and call the notifyWithUserConfirmation-callback with MSUserConfirmationAlways
[alertController addDefaultActionWithTitle:NSLocalizedStringFromTable(@"crash_alert_always_send", @"Main", @"")
handler:^(UIAlertAction *action) {
[MSCrashes notifyWithUserConfirmation:MSUserConfirmationAlways];

Просмотреть файл

@ -339,19 +339,19 @@ Your app is responsible for obtaining confirmation, e.g. through a dialog prompt
MSAlertController *alertController = [MSAlertController alertControllerWithTitle:@"The app quit unexpectedly."
message:@"Would you like to send an anonymous report so we can fix the problem?"];
// Add a "No"-Button and callthe notifyWithUserConfirmation-callback with MSUserConfirmationDontSend
// Add a "No"-Button and call the notifyWithUserConfirmation-callback with MSUserConfirmationDontSend
[alertController addCancelActionWithTitle:@"Don't Send"
handler:^(UIAlertAction *action) {
[MSCrashes notifyWithUserConfirmation:MSUserConfirmationDontSend];
}];
// Add a "Yes"-Button and callthe notifyWithUserConfirmation-callback with MSUserConfirmationSend
// Add a "Yes"-Button and call the notifyWithUserConfirmation-callback with MSUserConfirmationSend
[alertController addDefaultActionWithTitle:@"Send"
handler:^(UIAlertAction *action) {
[MSCrashes notifyWithUserConfirmation:MSUserConfirmationSend];
}];
// Add a "No"-Button and callthe notifyWithUserConfirmation-callback with MSUserConfirmationAlways
// Add a "No"-Button and call the notifyWithUserConfirmation-callback with MSUserConfirmationAlways
[alertController addDefaultActionWithTitle:@"Always Send"
handler:^(UIAlertAction *action) {
[MSCrashes notifyWithUserConfirmation:MSUserConfirmationAlways];