Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UIAlertAction completion block not called - iOS

I have an iOS app with a UIAlertController in the form of a action sheet being presented in my app when the user taps on a button.

It all works great, apart from one thing, the completion blocks don't get called for some reason.

Here is my code:

// Setup the alert information/type.
UIAlertController *action_view = [UIAlertController alertControllerWithTitle:@"Test title" message:@"test message" preferredStyle:UIAlertControllerStyleActionSheet];

// Create and add the cancel button.
UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"Dismiss" style:UIAlertActionStyleCancel handler:^(UIAlertAction * action) {

    [action_view dismissViewControllerAnimated:YES completion:^{
        NSLog(@"asdhfgjk");
    }];
}];

// Add the action button to the alert.
[action_view addAction:cancel];

// Present the alert to the user.
[self presentViewController:action_view animated:YES completion:nil];

If you run that code you will see the line which dismisses the controller wont run and neither will the NSLog statement inside it. However, if you delete the NSLog and set the completion block to nil, then it does run.... why???

Thanks for your time, Dan.

like image 735
Supertecnoboff Avatar asked Jun 15 '15 19:06

Supertecnoboff


2 Answers

Don't attempt to dismiss the alert controller. It will be dismissed for you by the time your alert action's handler is called.

Change the "cancel" action to:

UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"Dismiss" style:UIAlertActionStyleCancel handler:^(UIAlertAction * action) {
    NSLog(@"asdhfgjk");
}];
like image 95
rmaddy Avatar answered Sep 30 '22 22:09

rmaddy


The "cancel" action should not dismiss the view controller as mentioned by rmaddy. However, even if the "cancel" action is set to:

UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"Dismiss" style:UIAlertActionStyleCancel handler:^(UIAlertAction * action) {
NSLog(@"asdhfgjk");}];

you may see the same issue with the completion block not being called. For example, implementing this (somewhat contrived) method:

- (void)dismissViewControllerAnimated:(BOOL)flag completion:(void (^)(void))completion {
   [[self presentedViewController] dismissViewControllerAnimated:flag completion:nil];
}

could also have this effect because the UIAlertController gets dismissed before the completion block is called.

like image 23
user1248465 Avatar answered Sep 30 '22 20:09

user1248465