I'm having issues trying to preview big files in my iPad app. In the app we use UIDocumentInteractionController. When we try to open big files (> 100 MB) the UIDocumentInteractionController only shows a grey screen with the name and size of the file.
To narrow the problem we have done a simple app that only tries to preview a file using QLPreviewController and we find the same problem.
The problem seems related with the memory usage. Because the biggest size of the file you can preview changes regarding the iPad model and the amount of apps in the background.
Trying to preview the files with UIWebView is even worse: the app crashes (memory warning).
How can I preview big files using QLPreviewController? Should I have to do something special? Should I use another component? Which one?