iOS 6中的UIWebview - 使用loadData方法加载内容

时间:2014-11-13 07:06:34

标签: ios ios6 uiwebview

我尝试使用loadData方法在iOS6-UIWebview中加载内容(docx,xl​​xx,.m,.h等除了images& pdf)。 内容未加载

包含使用loadRequest,内容正在加载。但是,loadData方法在iOS 7及更高版本上运行良好。

我正在发送mime类型。

请澄清一下,是否可以在iOS 6中使用loadData方法在UIWebview中加载内容?

提前致谢。

1 个答案:

答案 0 :(得分:0)

使用此代码在webView中查看文档

NSURL *url = [[NSURL alloc] initFileURLWithPath:[[NSBundle mainBundle] pathForResource:@"{File Name}" ofType:@"{file Type}"]];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
[self.view addSubview:webView];