MFMailComposer not showing UIAlertController

11 Views Asked by At

Is there any way to show UIAlertController just after presenting MFMailcomposer? UIAlertView was working fine in this scenario. The problem is i think, view controller is changed now. Any suggestions please.

1

There are 1 best solutions below

0
On

got solution. Presenting alertcontroller on presented view rather than self view will solve the problem.

[self.presentedViewController presentViewController:alertController animated:YES completion:nil];