I have a application that work very well in iOS7.0/7.1
Since the last iOS update (8.0) the dismissViewControllerAnimated crash every time. Someone saw the same thing ?
I have a control this to call the second controller:
**detailViewController.delegate = self;
[self presentViewController:detailViewController animated:YES completion:nil];**
and in the close button I use this:
**// Do something with the sender if needed
[viewController dismissViewControllerAnimated:YES completion:NULL];**
I Used this (Remove view controller from another view controller) as a guide for implementation the "second" control but the crash appear again.
Any ideas ?