您好,登錄后才能下訂單哦!
#pragma mark UIWebViewDelegate
//開始加載
- (void)webViewDidStartLoad:(UIWebView *)webView {
[self startLoad:self.view];
}
//完成加載
- (void)webViewDidFinishLoad:(UIWebView *)webView {
[self stopLoad:self.view];
//獲取網(wǎng)頁(yè)webview的名字
self.title = [webView stringByEvaluatingJavaScriptFromString:@"document.title"];
}
//加載失敗
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
NSLog(@"加載失敗~");
}
//設(shè)置UIWebView的背景顏色為透明
[_webView setBackgroundColor:[UIColor clearColor]];
[_webView setOpaque:NO]; // 一定要設(shè)為no,否則更改背景色無(wú)效
//加載html
[self._webView loadHTMLString:_mHome.Content baseURL:nil];
//拿到webview的內(nèi)容寬度跟高度
CGFloat height = [[webView stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight"] floatValue];
CGFloat width = [[webView stringByEvaluatingJavaScriptFromString:@"document.body.scrollWidth"] floatValue];
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。