doc文件UIWebView 直接展示

    NSString *path=[[NSBundle mainBundle]pathForResource:@"测试一" ofType:@"docx"];

    //获取内容

    NSData *data = [[NSData alloc]initWithContentsOfFile:path];

    NSString *string = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];

    NSLog(@"%@",string);

    

    UIWebView *webView = [[UIWebView alloc]initWithFrame:self.view.bounds];

    webView.delegate = self;

    webView.multipleTouchEnabled = YES;

    webView.scalesPageToFit = YES;

    

    NSURL *url = [NSURL fileURLWithPath:path];

    NSURLRequest *request = [NSURLRequest requestWithURL:url];

    [webView loadRequest:request];

    

    [self.view addSubview:webView];

 

可以直接复制黏贴过去,改变文件名称即可,其他的没试过,就是一种doc,docx,都好使。

posted @ 2016-04-27 00:15  破水杯  阅读(287)  评论(0编辑  收藏  举报