是否有一个类可以获取应用程序中的默认图片查看器?
我不想访问 iPhone 上的图像,我想显示我的应用程序中的图像,但就像您查看 iPhone 相册中的图片一样 - 使用所有捏合和缩放控件等。
这可能吗?我认为可能(偶然)有像 AVMediaPlayer 类这样的类可以做到这一点?
谢谢 汤姆
I don't want to access the images on the iphone, I want to display an image from my app, but like you view pictures in the picture album of the iphone - with all the pinch and zoom controls and such.
Is this possible? I thought there might (by chance) be some class like the AVMediaPlayer class that would do this?
Thanks
Tom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的目标版本是 4.0 或更高版本,则可以使用 QLPreviewController:
在您的类中包含
#import
以下是创建一个的方法:
然后在视图控制器的其他位置:
If you're targeting 4.0 or later you can use QLPreviewController:
Include
#import <QuickLook/QuickLook.h>
in your classHere is how to create one:
Then somewhere else in your view controller: