ios webView去載入靜態的html

2021-08-05 21:16:45 字數 569 閱讀 9916

直接上**

//獲取webview

uiwebview * webview=(uiwebview *)self.view;

//設定**

webview.delegate=self;

//建立乙個url物件,和pathforresource差不多前面是檔名,後面是字尾

nsurl * url=[[nsbundle mainbundle]urlforresource:self.help.html withextension:nil];

//通過乙個統一的資源定位符,包裝成乙個請求

nsurlrequest * request=[nsurlrequest requestwithurl:url];

//載入請求

[webview loadrequest: request];

//網頁載入完成執行js**,跳轉到相應的行,讓相應的行跳到最上面

-(void)webviewdidfinishload:(uiwebview *)webview

ios webview載入本地網頁並解決亂碼問題

nsstring htmlstring nsstring stringwithcontentsoffile htmlpath webview loadhtmlstring htmlstring baseurl nil 如果需要用本地的話 baseurl 路徑設定為自己的resource 如果有亂碼問...

iOS webView 遠端h5優先載入本地資源

前言 uiwebview呼叫遠端h5頁面,優先載入本地 js css等資源,解決辦法就是對請求進行攔截。服務端 放在本文後面 客戶端需要對nsurlprotocol 的自定義類進行註冊,那麼所有的webview 對http請求都會被他攔截到 首先自定義nsurlprotocol類 import im...

ios webview 中 載入狀態顯示兩種方法

第一種方法 建立uiwebview webview uiwebview alloc initwithframe cgrectmake 0,44,320,400 webview setuserinteractionenabled no webview setbackgroundcolor uicolo...