美文网首页
UIWebView加载本地pdf、doc等文件

UIWebView加载本地pdf、doc等文件

作者: 小丑余 | 来源:发表于2016-05-23 16:15 被阅读158次

//加载本地pdf到webview

- (void) loadDocument:(NSString *)docName

{

NSString *path = [[NSBundle mainBundle] pathForResource:docName ofType:nil];

NSURL *url = [NSURL fileURLWithPath:path];

NSURLRequest *request = [NSURLRequest requestWithURL:url];

[self loadRequest:request];

}

相关文章

网友评论

      本文标题:UIWebView加载本地pdf、doc等文件

      本文链接:https://www.haomeiwen.com/subject/vzdhrttx.html