实施 Quick Look API 时遇到的问题
我想实现 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
你快到了!
QLPreviewController 需要 QLPreviewControllerDataSource
实现
并添加两个函数:
您会看到 QLPreviewItem 返回的第二个方法(如您所见,它也适用于纯 URL)
我希望我对您有进一步帮助
Your almost there!
the QLPreviewController need a QLPreviewControllerDataSource
implement
<QLPreviewControllerDataSource>
and add two functions:
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