我可以下载类型的文件.pdf
,。xlsx
, .jpeg
,.tiff
等来自 API。如果我使用UIWebView
它不支持.xlsx
和.msg
文件。
如何查看这些文件。
谁能帮我 ?
您可以使用QLPreviewController
来显示所有这些类型的文件。
Quick Look 预览控制器可以显示以下项目的预览:
use this code u will get satisfied
-(void)loadDocument:(NSString*)documentName inView:(UIWebView*)webView
{
NSString *path = [[NSBundle mainBundle] pathForResource:documentName ofType:file type];
NSURL *url = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
}
try this it will help you to make zimmicks with any type of file