iOS开发 使用webview加载文档

来源:互联网 发布:阈值分割算法 matlab 编辑:程序博客网 时间:2024/06/17 00:10

如果需要加载其他格式的文档,换个格式就可以


NSString *path = [[NSBundle mainBundle] pathForResource:@"ArcGISforiOS开发教程" ofType:@"pdf"];    NSURL *url = [NSURL fileURLWithPath:path];    UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0,width, height)];    [webView loadRequest:[NSURLRequest requestWithURL:url]];    [webView sizeToFit];    webView.scalesPageToFit = YES;       [self.view addSubview:webView];        self.webView = webView;

ArcGIS for iOS交流群:438651997,欢迎加入讨论

原创粉丝点击