開發過程中登錄注冊的服務協議一般需要本地加載:
方法如下:
1、加載文件
_webView = [[UIWebView alloc] init];
[self.view addSubview:_webView];
_webView.scrollView.showsVerticalScrollIndicator = NO;
_webView.delegate = self;
NSString* path = [[NSBundle mainBundle] pathForResource:@"服務協議" ofType:@"html"];
NSURLRequest* request = [NSURLRequest requestWithURL:[NSURL fileURLWithPath:path]] ;
[_webView loadRequest:request];
2、加載代碼
NSString* path = [[NSBundle mainBundle] pathForResource:@"服務協議" ofType:@"html"];
NSURL *baseURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]];
NSString *html = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
[_webView loadHTMLString:html baseURL:baseURL];