如何在iPhone应用中打开文档,Excel,演示文稿文件。使用Web视图,我们可以使用以下代码行打开* .pdf文件:
NSString *thePath = [[NSBundle mainBundle] pathForResource:@"iPhone_User_Guide" ofType:@"pdf"];
if(thePath) {
NSData *pdfData = [NSData dataWithContentsOfFile:thePath];
[webview loadData:pdfData MIMEType:@"application/pdf"
textEncodingName:@"utf-8" baseURL:nil];
}
我们如何以这种方式在webview中打开doc,ppt,xls文件?