为什么 doc 和 docx 在 iOS 中丢失样式信息?
我想在iOS中打开一个docx、doc文件。
我尝试了两种方法:
1.Web 视图
2.QLPreviewController
在这两种方法中,我都丢失了与文档关联的样式信息。
为什么会发生这种情况?是否以任何方式可能保留样式信息。
我们有什么办法可以保留这些信息吗?
样式可以是:
- 文档中的表格 - 以 doc 格式显示,但不以 docx 格式显示
- 文档中的特定文本可以用颜色突出显示
I wanted to open a docx, doc file in iOS.
I tried two ways:
1.Web view
2.QLPreviewController
In both the ways I am losing the style information associated with the document.
WHy this happens? Is in any way possible to retain the style information.
Is there any way we can retain this information?
The Style could be:
- A table in document - displayed with doc format but not with docx format
- Particular text in the document alone can be hightlighted with a color
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如您所知,iOS 通过 UIWebView 支持 MS Office 文档。
这意味着文档以某种方式“转换”为 HTML 表示形式,然后显示。
UIWebView 不是 MS Word。
不要指望它的行为像它一样,并支持它的所有功能。
iOS has support for MS Office documents through a UIWebView, as you know.
It means the document is in some way «converted» to an HTML representation, and then displayed.
UIWebView is not MS Word.
Don't expect it to behave like it, and support all of its features.