view .doc, .docx, .rtf, .ppt file in iphone using Webview

后端 未结 4 901
闹比i
闹比i 2021-02-04 19:39

I want to view .doc, .docx, .rtf, .ppt file in iphone.

But I guess something is going wrong at my side and its not working for the above formats but my code is working f

4条回答
  •  無奈伤痛
    2021-02-04 20:07

    You need to supply something to baseURL:. For example:

    [webView loadData:requestData MIMEType:@"application/msword" textEncodingName:@"UTF-8" baseURL:[NSURL URLWithString:@"http://localhost/"]];
    

    Works for me now.

提交回复
热议问题