UIWebView 未在 iPhone 中显示具有正确字体大小的 .doc 文件
Posted
技术标签:
【中文标题】UIWebView 未在 iPhone 中显示具有正确字体大小的 .doc 文件【英文标题】:UIWebView not displaying .doc files with correct font size in iPhone 【发布时间】:2016-02-26 09:03:01 【问题描述】:我正在尝试从主包的 UIWebView 中显示本地 .doc 文件。
我添加了以下代码以显示在 UIWebView 中。
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"LocalDocument" withExtension:@"doc"] cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];
[self.webView loadRequest:theRequest];
UIWebview 正确显示文档,但问题是它没有在 iPhone 中以正确的字体大小显示文本“Header
”。
iPhone 截图
iPad 截图
在 word 文档中,我添加了字体为 size 22
的文本“Header
”和字体为 size 14
的描述文本。
在 iPad 中显示 correctly
,但在 iPhone 中显示字体为 size 14
的两个文本。
有人遇到过这个问题吗?
【问题讨论】:
【参考方案1】:使用这个
NSString*fileName= @"LocalDocument";
NSString *path = [[NSBundle mainBundle] pathForResource:fileName ofType:@"doc"];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL fileURLWithPath:path isDirectory:NO]];
[webView setScalesPageToFit:YES];
[webView loadRequest:request];
[self.view addSubview:webView];
并为 UIWebview 使用自定义字体
NSString *myText=[NSString stringWithFormat: @"<html><body><script>var str = '%@'; document.write(str.fontsize(%d).fontcolor('green'));</script></body></html>",myString,textFontSize];
【讨论】:
以上是关于UIWebView 未在 iPhone 中显示具有正确字体大小的 .doc 文件的主要内容,如果未能解决你的问题,请参考以下文章
仅 iPhone 应用程序中的 UIWebView 显示在 iPad 上