QLPreviewController delegate method doesn't get called in iOS 10, but does get called if ran earlier than iOS 10
问题 Here is my code. This may sound like redundant question but my scenario is different as I am not adding QLPreviewController as a subview but present as a controller. After downloading from dropbox, I present it like- self.pdfViewController = [[QLPreviewController alloc] init]; self.pdfViewController.delegate = self; self.pdfViewController.dataSource = self; [self presentViewController:self.pdfViewController animated:YES completion:nil]; and I also have QLPreviewControllerDataSource,