Domanda

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?

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top