如何在iPhone应用程序中打开* .doc,* .xls文件?

时间:2010-11-17 06:36:49

标签: iphone

如何在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文件?

0 个答案:

没有答案
相关问题