如何通过邮件链接打开iPad/iPhone应用程序?
我开发了一个通用的 iPhone/iPad 应用程序。我需要通过邮件文件链接(带有一些扩展名,如 .xyz)打开这个应用程序,即当我单击邮件中的链接(通过 safari 或其他一些网络服务器打开)时,我的应用程序应该启动,并且文件内容也必须是已加载到应用程序内部。我需要在 .plist 文件中进行哪些设置?以及如何处理启动时加载的文件内容? 有人能帮我怎么做吗?
任何帮助都将受到极大的尊重。 感谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在应用程序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)
实现对自定义文件格式的支持是一个很好的入门方式。是的,您需要在 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.