Pergunta

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?

Foi útil?

Solução

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top