I use QLPreviewController to view images in my application. I'm supporting iOS 9 at the moment but still building with Xcode 6.4 (would love to upgrade but it's up to corporate when we go to the new Xcode). We use storyboards auto layout etc.
I noticed in the latest test flight build on my personal iPhone 6S (iOS 9.1) while viewing an image in QLPreviewController I can use a swipe down gesture to dismiss the controller. But after that I get a blank screen in my application.
I do hit the previewControllerDidDismiss: delegate method, but I have not been able to once again make the presenting controller's view visible. I have tried
[[[UIApplication sharedApplication] keyWindow] bringSubviewToFront: self.view];
Any help or advice you can offer is greatly appreciated.