我尝试使用loadData方法在iOS6-UIWebview中加载内容(docx,xlxx,.m,.h等除了images& pdf)。 内容未加载。
包含使用loadRequest,内容正在加载。但是,loadData方法在iOS 7及更高版本上运行良好。
我正在发送mime类型。
请澄清一下,是否可以在iOS 6中使用loadData方法在UIWebview中加载内容?
提前致谢。
答案 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];