WKWebView載入本地檔案

2021-09-24 07:23:04 字數 698 閱讀 6294

wkwebview無法載入本地路徑的資源檔案,因為資源路徑需要手動設定,下面**中將canvas資料夾設為baseurl,這樣就可以將本地載入的檔案放到該資料夾下,為了適配src="./***x".

wkwebview *webview = [[wkwebview alloc] initwithframe:cgrectmake(0, 20, self.view.frame.size.width, self.view.frame.size.height) configuration:[[wkwebviewconfiguration alloc] init]];

nsstring *path = [[nsbundle mainbundle] pathforresource:@"index" oftype:@"html"];

nsstring *htmlstr = [nsstring stringwithcontentsoffile:path encoding:nsutf8stringencoding error:nil];

nsurl *baseurl = [nsurl fileurlwithpath:assetpath];

[webview loadhtmlstring:htmlstr baseurl:baseurl];

[self.view addsubview:webview];

複製**

載入本地Html檔案

uiwebview webview uiwebview alloc initwithframe cgrectmake 0,0,320,480 autorelease nsstring htmlpath nsbundle quartz2d.html htmlpath htmlpath stringby...

載入本地HTML檔案

當我們載入乙個本地html檔案的時候,乙個資料夾裡還有css js image檔案,所以單獨載入乙個html檔案會沒有,只有文字,解決方案如下 載入部分 nsstring pathstr nsbundle mainbundle pathforresource go live oftype html ...

numpy 載入本地檔案

載入本地檔案 fname path.本地檔案路徑 檔案 字串或產生器,可以是.gz或bz2壓縮檔案 np.loadtxt fname,dtype np.float,delimitet none,skiprows 0,usecols none,unpack false 變數說明 dtype 資料型別,...