实施 Quick Look API 时遇到的问题

发布于 2024-09-30 05:24:57 字数 217 浏览 1 评论 0原文

我想实现 QuickLook API 来预览 pdf 文件。我制作了一个基于视图的应用程序,并在 .h 文件中导入 QuickLook/QuickLook.h 。在 .m 文件中,我在 viewDidLoad 中创建了 QLPreviewController 的对象。之后,我尝试创建 QLPreviewItem 对象,但这给出了错误“QLPreviewItem 未声明”。如果可以的话请帮助我。

谢谢。

I want to implement QuickLook API for preview of pdf file. I made a view based app and in .h file I import QuickLook/QuickLook.h . in .m file I made the object of QLPreviewController inside viewDidLoad. After that i tried to make object of QLPreviewItem, but this gives error "QLPreviewItem undeclared". Plz help me if u can.

Thanx.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

单挑你×的.吻 2024-10-07 05:24:57

QLPreviewItem 不是一个类,而是一个协议。您必须使用 NSURL 来填充 API(NSURL 符合 QLPreviewItem)或创建您自己的符合该协议的对象类。

QLPreviewItem is not a class but a protocol. You must either use NSURLs to fill the API (NSURL conforms to QLPreviewItem) or create your own class of objects conforming to that protocol.

晒暮凉 2024-10-07 05:24:57

你快到了!

QLPreviewController 需要 QLPreviewControllerDataSource

实现

并添加两个函数:

- (NSInteger) numberOfPreviewItemsInPreviewController: (QLPreviewController *) controller
{
    return 1; //number of documents, usually you use a array with document url's
}

- (id <QLPreviewItem>) previewController: (QLPreviewController *) controller previewItemAtIndex: (NSInteger) index
{
    return [NSURL fileURLWithPath:@"document.pdf"]; //other documents are supported too
}

您会看到 QLPreviewItem 返回的第二个方法(如您所见,它也适用于纯 URL)

我希望我对您有进一步帮助

Your almost there!

the QLPreviewController need a QLPreviewControllerDataSource

implement <QLPreviewControllerDataSource>

and add two functions:

- (NSInteger) numberOfPreviewItemsInPreviewController: (QLPreviewController *) controller
{
    return 1; //number of documents, usually you use a array with document url's
}

- (id <QLPreviewItem>) previewController: (QLPreviewController *) controller previewItemAtIndex: (NSInteger) index
{
    return [NSURL fileURLWithPath:@"document.pdf"]; //other documents are supported too
}

Your see that the second method a QLPreviewItem returns (as you see it works with plain URL's too)

I hope I helped you a bit further

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文