iOS WKWebView載入本地網頁

2021-08-10 06:38:56 字數 1248 閱讀 3420

@property (strong, nonatomic) wkwebview *webview;

@property (nonatomic, copy) nsstring *url;

// 我這裡是將html資源檔案放置在工程內乙個bundle的資料夾內

// 拼接後的網頁路徑

self

.url = [self componentfileurlwithoriginfilepath:path dictionary:@];

// 載入網頁

[self

.webview loadrequest:[nsurlrequest requestwithurl:[nsurl urlwithstring:self

.url]]];

// 將要載入的html路徑

nsstring *urlstr1 = @"~/cache/fund/index.html";

// 將要載入的html路徑的上一層級路徑

nsstring *urlstr2 = @"~/cache/fund";

self

.url = [self componentfileurlwithoriginfilepath:urlstr1 dictionary:@];

[self

.webview loadfileurl:[nsurl urlwithstring:self

.url] allowingreadaccesstourl:[nsurl fileurlwithpath:urlstr2]];

/**

本地網頁資料拼接

@param filepath 網頁路徑

@param dictionary 拼接的引數

@return 拼接後網頁路徑字串

*/- (nsstring *)componentfileurlwithoriginfilepath:(nsstring *)filepath dictionary:(nsdictionary *)dictionary

[urlcomponents setqueryitems:mutarray];

// urlcomponents.url 返回拼接後的(nsurl *)

// urlcomponents.string 返回拼接後的(nsstring *)

return urlcomponents.string;

}

ios WKWebView 內嵌h5開發實戰

ios用的wkwebview,我主要負責h5頁面開發 vue ts 以下是開發h5需要做的事,開始了哦 其中的getparams等是與ios約定好的事件 private paramsinfo private a created 方法 ios h5 start private getparams pa...

requireJs 引用cdn失敗後載入本地js

問題 頁面中引用js和css過多會導致頁面載入變慢 引用cdn中的js和css會比直接在本地上傳時間短 解決辦法 我本地專案用到requirejs載入頁面中的js和css,變為cdn載入時需要改動如下 1.jquery static lib jquery jquery 1.9.1.min 2.增加b...

as2 0指令碼怎樣做「載入中」

var myloading movieclip var loadinfo movieclip var linebgcolor 0x9933ff 進度條顏色 var linecolor 0x0000ff 進度框顏色 var linelen number 500 用函式設定進度條進度框寬度 var li...