0

Why qlpreviewcontroller doesn´t load my pdf file if the path is a mysql query.

for example :

http://myweb.com/ios/download.php?upl_P=699

The file appears codificated.

Advanced thanks

user1312508
  • 183
  • 2
  • 10

1 Answers1

0

QLPreviewController only works with file URLs. You have to download the file to the local filesystem first and then load it from disk using:

NSURL *fileURL = [NSURL fileURLWithPath:@"/path/to/file/on/disk"];
Matt Long
  • 24,438
  • 4
  • 73
  • 99