I am using a storyboard in my design for iOS 7 and I am getting the following warning when I dismiss a modal:

Warning: Attempt to dismiss from view controller <UITabBarController: 0x8e11120> while a presentation or dismiss is in progress!

The modal is dismissed just fine but I don't like the warning. I am dismissing the modal in the presenting view controller with the following:

- (IBAction)doneButtonPressed:(UIStoryboardSegue *)segue{

   [self.presentedViewController dismissViewControllerAnimated:YES completion:nil];}

I have also tried with segue.sourceViewController with the same results.

Any thoughts?

有帮助吗?

解决方案

Found the answer... when you are unwinding don't need to explicitly dismiss the modal controller. That comes from free from the unwind.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top