标签:we
#pragma mark UIWebViewDelegate
//开始加载
- (void)webViewDidStartLoad:(UIWebView *)webView {
[self startLoad:self.view];
}
//完成加载
- (void)webViewDidFinishLoad:(UIWebView *)webView {
[self stopLoad:self.view];
//获取网页webview的名字
self.title = [webView stringByEvaluatingJavaScriptFromString:@"document.title"];
}
//加载失败
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
NSLog(@"加载失败~");
}
标签:we
原文地址:http://5828666.blog.51cto.com/5818666/1651542