0

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.

shini
  • 1
  • 1
  • Hi, got solution. Presenting alertcontroller on presented view rather than self view will solve the problem. [self.presentedViewController presentViewController:alertController animated:YES completion:nil]; – shini Mar 03 '17 at 04:46

1 Answers1

0

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

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

shini
  • 1
  • 1