#iOS問題記錄#動態Html加載本地CSS和JS文件

所謂動態Html,指代碼中組合生成的html字符串;css

若須要加載本地CSS,圖片,JS文件,使用loadHTMLString baseURL;html

 

有兩種方法:web

一,使用絕對路徑,例如:app

  //獲取文件全路徑orm

    NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"M_head@2x" ofType:@"png"];htm

    //代碼加載圖片 須要「file:///」標誌;圖片

    [_mStrHtmlUrl appendFormat:@"<img src=\"file:///%@\" width=[\"40\" height=\"40\"/> \n",imagePath];

webview

  //最後loadHTMLString時,baseURL可爲nil;字符串

   [webview loadHTMLString:mStringhtml baseURL:nil];file

 

二,使用bundleURL;

   //加載文件能夠只須要文件名

      [_mStringhtml appendFormat:@"<link rel=\"stylesheet\" type=\"text/css\" href=\"Table_normal.css\" />\n "];

  
  //最後loadHTMLString時,使用[[NSBundle mainBundle] bundleURL];

   [webview loadHTMLString:weakSelf.mStringhtml baseURL:[[NSBundle mainBundle] bundleURL]];

相關文章
相關標籤/搜索