iPhone 帮助文件创建

发布于 2024-08-22 04:19:37 字数 151 浏览 10 评论 0原文

我正在完成一个应用程序并编写帮助文件。我只想制作一个 pdf 文档并在网络视图中显示它。

我应该知道 iPhone 上是否有任何帮助标准,Windows 有 CHM,即 html 帮助文件格式。 iphone 有什么类似/可比的东西吗?

我在 3.0 工作

Im finishing up an app and writing the help file. I was just going to do a pdf document and display it in a web view.

Is there any standards for help on the iphone i should be aware of, windows has CHM, the html help file format. is there anything similar/comparable for the iphone.

im working in 3.0

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

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

发布评论

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

评论(3

鸢与 2024-08-29 04:19:37

正如 chpwn 所建议的,没有标准的帮助文件格式,因此许多应用程序只是使用与应用程序捆绑在一起的 HTML。我在我的应用程序中执行此操作,并简单地使用 UIWebView 来显示内容。我使用了适合 iPhone 屏幕的大文本样式。我的用户似乎真的很喜欢这个帮助的存在。

我已在线发布了帮助文件,因此您可以请参阅我为它们使用的一般样式和结构。我只是使用自定义复制文件构建阶段将它们包含在我的应用程序资源中的单独目录中。

As chpwn suggests, there is no standard help file format, so many applications just use HTML bundled with the application. I do this in my application, and simply use a UIWebView to display the content. I've used a style that fits on the iPhone screen with large text. My users seem to really like the presence of this help.

I've posted the help files online, so you can see the general style and structure I use for them. I simply include them in a separate directory in my application resources using a custom Copy Files build phase.

九局 2024-08-29 04:19:37

事实并非如此——您可以只使用一个充满标准 HTML 文件的文件夹。

我建议使用 saurik 的“menes”来实现类似 iPhone 的 UI,但还有很多其他的,例如 iWebKit、iUI 等。

Not really - you can just use a folder full of files in standard HTML.

I suggest saurik's "menes" for an iPhone-like UI, but there are many others, such as iWebKit, iUI, etc.

牵你手 2024-08-29 04:19:37

如果应用程序的任何部分需要解释性文本,您应该将其直接合并到 UI 中,无论是与相关 UI 元素一起,还是在您第一次访问应用程序的该部分时出现的弹出对话框中。

我强烈建议不要合并单独的帮助系统。

If any part of your app needs explanatory text you should incorporate it into the UI directly, either alongside the relevant UI elements or in popup dialogs that appear the first time you visit that section of your app.

I would very strongly recommend against incorporating a separate help system.

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