在 iPad/iBooks 上:用于打开/链接到电子书中另一个应用程序的 XHTML 代码?
我的问题适用于 iPad 版 iBook 应用程序。
目标是能够从电子书的文本中打开 iPad 上的另一个应用程序。
应将哪些代码插入 EPUB 的 XHTML 文件中以创建指向 iPad 上另一个应用程序的直接链接?
My question applies to the iBook app for the iPad.
The goal is to be able to open another app on the iPad from within the text of an ebook.
What code should be inserted into an EPUB's XHTML file to create a direct link to another app on the iPad?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用URL方案,您可以打开其他应用程序。
默认应用程序使用的 URL 方案列于 https:// developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html
Using a URL scheme you can open other applications.
URL schemes used by the default applications are listed at https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html
执行此操作的方法是使用 UIDocumentInteractionController。不相信可以使用 XHTML 来完成。查看这些指南: 类 API< /a> Apple iPad 编程指南
基本上,您将能够在已注册支持该功能的任何已安装应用程序中打开一个菜单,其中包含启动文件的选项(如果需要,可以直接链接)文件类型。祝你好运。
The way to do this is to use a UIDocumentInteractionController. Don't believe it can be done using XHTML. Have a look at these guides: Class API Apple iPad Programming Guide
basically you will be able to open a menu with the option to launch the file (direct link if you want) in any of the apps installed that are registered to support that type of file. Good luck.