您好,登錄后才能下訂單哦!
這篇文章主要介紹iOS使用WKWebView加載HTML5不顯示屏幕寬度怎么辦,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
最近在項目中我們的商品詳情頁是一個后臺返回的圖片標簽。需要我們自己去寫一個HTML5標簽進行整合,(相當于重新寫了一個HTML頁面)
:ok_hand:那就沒辦法了,我就自己寫一個標簽咯,應該不難吧。嘻嘻嘻嘻~~~~~
dispatch_async(dispatch_get_main_queue(), ^{ if(self.detailModel.details){ //這里是自己寫的簡單的加載H5 NSString *header =@"<head><meta name=\viewport\content=\width=device-width, initial-scale=1.0, user-scalable=no\> <style>body,html{width: 100%;height: 100%;}*{margin:0;padding:0;}img{max-width:100%;display:block; width:auto; height:auto;}</style></head>"; NSString *html = [NSString stringWithFormat:@"<html>%@<body>%@</body></html>",header,self.detailModel.details]; [self.webView loadHTMLString:html baseURL:nil]; } });
得,那我就先用UIWebView寫的,調了半天結果就是不占據屏幕寬度,好煩啊。(想對著自錘兩下)。找資料原來可以設一個屬性就可以解決,豪嗨心呀!
沒設置屬性之前是這個鬼樣子的
使用[_webView setScalesPageToFit:NO]; 這個屬性就好了,這個屬性的作用是是都縮放到屏幕大小。好了,UIWebView使用這個卻解決了。
///////////////////////..............................告一段落
但是WKWebView呢?因為一般H5加載需要一點點時間并且也想加一個進度條的效果,這樣體驗會更加的好一點。當H5沒有加載完的時候用戶滑動頁面會卡住(因為scrollerView的ContentSize還不確定)。所以一般是在加載完成后再設置scrollerView的ContentSize。廢話不多說直接上代碼
-(WKWebView *)webView { if (!_webView) { _webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, iPhone5sHeight(375+135*PXSCALEH+285*PXSCALEH), screenW, screenH-50)]; WKWebViewConfiguration *wkWebConfig = [[WKWebViewConfiguration alloc] init]; WKUserContentController *content = [[WKUserContentController alloc]init]; // 自適應屏幕寬度js NSString *jSString = @"var meta = document.createElement('meta'); meta.setAttribute('name', 'viewport'); meta.setAttribute('content', 'width=device-width'); document.getElementsByTagName('head')[0].appendChild(meta);"; WKUserScript *wkUserScript = [[WKUserScript alloc] initWithSource:jSString injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES]; // 添加自適應屏幕寬度js調用的方法 [content addUserScript:wkUserScript]; wkWebConfig.userContentController = content; _webView = [[WKWebView alloc]initWithFrame:CGRectMake(0, iPhone5sHeight(375+135*PXSCALEH+285*PXSCALEH), screenW, screenH-50) configuration:wkWebConfig]; _webView.UIDelegate = self; _webView.navigationDelegate = self; } return _webView; }
到這里適配一下就好了,看效果
以上是“iOS使用WKWebView加載HTML5不顯示屏幕寬度怎么辦”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。