在 iPhone 中显示带有页眉和页脚的 .doc 文件

发布于 2024-11-11 17:52:45 字数 422 浏览 0 评论 0原文

我想在 iPhone 中显示带有页眉和页脚的 .doc 文件。目前我正在使用网络视图来显示该文件。我可以显示该文件,但 .doc 文件的页眉和页脚未显示在 Web 视图中。

为了显示 .doc 文件,我使用了以下代码。

    NSString *path = [[NSBundle mainBundle] pathForResource:@"a" ofType:@"doc"];
    NSURL *targetURL = [NSURL fileURLWithPath:path];
    NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
    [pdfWebView_ loadRequest:request];

如何显示带有页眉和页脚的 .doc 文件?

I want to display a .doc file with header and footer in iPhone. Currently I'm using a webview to display the file. I'm able to display the file, but the header and footer of the .doc file is not displayed in the webview.

To show the .doc file I used the following code.

    NSString *path = [[NSBundle mainBundle] pathForResource:@"a" ofType:@"doc"];
    NSURL *targetURL = [NSURL fileURLWithPath:path];
    NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
    [pdfWebView_ loadRequest:request];

How do I display the .doc file with a header and a footer?

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

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

发布评论

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

评论(1

木緿 2024-11-18 17:52:45

您可以以自定义方式执行此操作,即您可以添加 UILabel 或 UIImageView 来代替 header 和 UIImageView 。 UIView 的页脚和在 UILabels 之间添加 UIWebView。

You can do this in customize way ie.you can add UILabel or UIImageView in place of header & footer of your UIView & In between that UILabels add UIWebView.

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