我正在尝试使用 QuickLook 库预览我的文档/图片。 当我想在ios7和ios8中打开内容时一切都很好。 我想更改预览中找到的项目的名称。 在 iOS7 上一切正常,但当我在 iOS8 上运行应用程序时出现问题。
这是我的代码:
-(void)startDownload{
// Download code here - after I set the QLPreviewController
QLPreviewController* lcontroller= [QLPreviewController new];
self.quickLookUrl = item.openUrl;
self.quickLookName = item.name;
lcontroller.dataSource = self;
[self presentViewController:lcontroller animated:NO completion:nil];
}
#pragma mark - Quicklook Delegate
- (NSInteger)numberOfPreviewItemsInPreviewController:(QLPreviewController *)controller{
return 1;
}
- (id<QLPreviewItem>)previewController:(QLPreviewController *)controller previewItemAtIndex:(NSInteger)index{
QLPreviewItemCustom *obj = [[QLPreviewItemCustom alloc] initWithTitle:self.quickLookName url:[NSURL fileURLWithPath:self.quickLookUrl]];
return obj;
}
QLPreviewItemCustom - QLPreviewItem 详细信息:
QLPreviewItemCustom.h
#import <Foundation/Foundation.h>
#import <QuickLook/QuickLook.h>
@interface QLPreviewItemCustom : NSObject <QLPreviewItem>
- (id) initWithTitle:(NSString*)title url:(NSURL*)url;
@end
QLPreviewItemCustom.m - 详细信息:
#import "QLPreviewItemCustom.h"
@implementation QLPreviewItemCustom
@synthesize previewItemTitle = _previewItemTitle;
@synthesize previewItemURL = _previewItemURL;
- (id) initWithTitle:(NSString*)title url:(NSURL*)url
{
self = [super init];
if (self != nil) {
_previewItemTitle = title;
_previewItemURL = url;
}
return self;
}
@end
当我在 iOS8 上运行该项目时,这就是结果:
我已阅读有关 iOS8 GM 的发行说明(我能够在应用程序中打开 PDF 文件,没有任何问题): iOS8 GM 发行说明
目前不知道是新SDK的问题还是我开发过程中的错误。 你能帮我提供建议吗?我还没有找到其他库来帮助我预览项目的内容(pdf、jpg、excel、doc...)。
预先感谢您的帮助!
我认为您忘记在代码中指示 QLPreviewController 的委托。我在 iOS8 上运行此代码并且运行良好:
// 标记:-QLPreviewControllerDelegate
func numberOfPreviewItemsInPreviewController(controller: QLPreviewController! ) -> Int
{
return 1
}
func previewController(controller: QLPreviewController!, previewItemAtIndex index: Int) -> QLPreviewItem!
{
// Break the path into it's components (filename and extension)
// Use the filename (index 0) and the extension (index 1) to get path
let path = self.filenameToShow
return NSURL.fileURLWithPath(path!)!
}
func showPrescription(sender: UIButton)
{
self.previewController = IGQLPreviewController()
let directory = NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory.CachesDirectory, NSSearchPathDomainMask.UserDomainMask, true)
var path: String = directory[0] as! String
let fileName = String(format: "%@_%@.png", arguments: [self.numberTextField.text, self.name.text])
let imagePath = path.stringByAppendingPathComponent(fileName)
self.filenameToShow = imagePath
self.previewController!.dataSource = self
self.previewController!.delegate = self
self.previewController!.currentPreviewItemIndex = 0
self.navigationController?.pushViewController(self.previewController!, animated: true)
}
func previewController(_ controller: QLPreviewController, previewItemAt index: Int) -> QLPreviewItem {
//NSURL(fileURLWithPath: self.imageUrl) this will append 'file' string at the end, if you try to load file directly from url.
// so use below code to load file directly from url.
let doc = URL(string: fileUrl)
return doc! as QLPreviewItem
}