如何让我的应用程序打开 png 文件?

发布于 2024-11-25 09:47:32 字数 615 浏览 3 评论 0原文

当用户在网络中搜索图像并且他/她选择它时,我希望注册我的应用程序以打开它。这是我包含的内容,但应用程序未检测到图像文件!

<dict>
<key>CFBundleTypeName</key>
<string>PNG Image</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>CFBundleTypeExtensions</key>
<array>
    <string>png</string>
    <string>PNG</string>
</array>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>LSItemContentTypes</key>
<array>
    <string>public.png</string>
</array>
</dict>

When a user search for images in net and he/she is selecting it, i want my app to be registered to open it. This is what I have included but the app is not detecting image files!

<dict>
<key>CFBundleTypeName</key>
<string>PNG Image</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>CFBundleTypeExtensions</key>
<array>
    <string>png</string>
    <string>PNG</string>
</array>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>LSItemContentTypes</key>
<array>
    <string>public.png</string>
</array>
</dict>

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

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

发布评论

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

评论(1

江南烟雨〆相思醉 2024-12-02 09:47:32

您尝试做的事情仅适用于 Mac OS X,不适用于 iPhone。解释如下: DocumentBasedApplications -- 编辑者和查看者角色

在 iOS 上,您的应用程序位于沙箱(应用程序运行时环境)。

每个应用程序都可以访问自己沙箱的内容,但是
无法访问其他应用程序的沙箱。

What you are trying to do is only available for Mac OS X, not for iPhone. It is explained here: DocumentBasedApplications -- editor and viewer role

On iOS your application is in a sandbox (The Application Runtime Environment).

Each application has access to the contents of its own sandbox but
cannot access other applications’ sandboxes.

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