如何通过邮件链接打开iPad/iPhone应用程序?

发布于 2024-11-28 15:36:34 字数 215 浏览 3 评论 0 原文

我开发了一个通用的 iPhone/iPad 应用程序。我需要通过邮件文件链接(带有一些扩展名,如 .xyz)打开这个应用程序,即当我单击邮件中的链接(通过 safari 或其他一些网络服务器打开)时,我的应用程序应该启动,并且文件内容也必须是已加载到应用程序内部。我需要在 .plist 文件中进行哪些设置?以及如何处理启动时加载的文件内容? 有人能帮我怎么做吗?

任何帮助都将受到极大的尊重。 感谢

I have developed a universal iPhone/iPad app. I need to open this app through a mail file link(with some extension like .xyz) i,e when I click the link in mail(opened through safari or some other web servers) my app should launch and also the file contents must be loaded inside the app. What are all the settings I need to do in .plist file? And how to handle the file contents once loaded at launch?
Can anybody help me how to do this?

Any help will be greatly respected.
Thank

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

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

发布评论

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

评论(2

甚是思念 2024-12-05 15:36:34

您可以在应用程序plist文件中指定方案(例如,您可以在步骤6”中找到如何指定方案。 com/docs/guides/mobile/#ios" rel="nofollow">FBConnect)

You can specify scheme in application plist file (you can find how specify scheme for example on "step 6" for FBConnect)

余罪 2024-12-05 15:36:34

实现对自定义文件格式的支持是一个很好的入门方式。是的,您需要在 Info.plist 中定义文档类型,然后当您的应用程序通过打开此类文件启动时,您会在应用程序中获得一个字典:didFinishLaunchingWithOptions:应用程序委托方法,其中包含有关它的信息,包括文件路径。之后如何处理文件取决于文件类型以及您想用它做什么。

Implementing Support for Custom File Formats is a great way to get started. Yes, you need to define the document types in your Info.plist and then when your app gets launched by opening this kind of files you get a dictionary in your application:didFinishLaunchingWithOptions: app delegate method with info about it, including the file path. How you handle the file after that depends on file type and what you want to do with it.

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