我尝试使用 QlPreviewController 显示来自 Internet url 的 pdf 而不下载它。这是我的代码:
NSURL* url2 = [NSURL URLWithString:@"http://wwww.myweb.com/files/terms_en.pdf"];
// Check if can be shown
if(![QLPreviewController canPreviewItem:url2]) {
// cant show document
NSLog(@"can't show document");
}else {
NSLog(@"can show document");
// Show the document in preview
// _previewItemURL = url;
QLPreviewController* preview = [[QLPreviewController alloc] init];
[preview setDataSource:url2];
}
但它没有显示任何东西。此外,我在最后一句 [preview setDataSource:url2] 中有一个警告,说“发送 'NSURL *_strong' 到不兼容类型的参数 'id