在 iPhone 中显示带有页眉和页脚的 .doc 文件
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以以自定义方式执行此操作,即您可以添加 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.