如何使用QLPreviewPanel?
我有一个可以下载图像和文本的应用程序,我想使用 QLPreviewPanel 来预览它。然而,委托和数据源的实现让我感到困惑。我只想传递图像或字符串并显示它? (QLPreviewPanel 是否适合在这里使用?)
I have an app which can download images and text, I want to use the QLPreviewPanel to give a preview of this. However the delegate and datasource implementation has me confused. I just want to pass an image or string and have it displayed? (is QLPreviewPanel even the right thing to use here?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没什么好说的。看看Apple的示例项目 快速查看下载器;文件 MyDocument.m 具有数据源和委托方法。
数据源方法就像表视图数据源方法一样:
如果不需要自定义面板的行为,则可以跳过实现委托。
There's not much to it. Take a look at Apple's sample project Quick Look Downloader; the file MyDocument.m has the data source and delegate methods.
The data source methods are just like table view data source methods:
You can skip implementing a delegate if you don't need to customize the behavior of the panel.