iOS开发 使用webview加载文档

时间:2022-01-08 13:44:29

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


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,欢迎加入讨论