且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何打开&使用Document目录中的UIWebview查看iphone中的.doc,.docx,.rtf,.ppt,.pptx,.xlsx,.xls文件?

更新时间:2023-01-18 15:31:31

试试这个:

     [self.m_webView loadRequest:[NSMutableURLRequest requestWithURL:[NSURL fileURLWithPath:_m_filePath]cachePolicy:NSURLCacheStorageAllowedInMemoryOnly timeoutInterval:3.0]];  

您可以更改timeoutInterval和cachePolicy,有时您需要等待更多时间才能加载。

You can change timeoutInterval and cachePolicy, in sometime you have to wait more time to loading.