1.nsbundle
1> 乙個nsbundle代表乙個資料夾,利用nsbundle能訪問對應的資料夾
2> 利用mainbundle就可以訪問軟體資源包中的任何資源
3> 模擬器應用程式的安裝路徑
// file : 全路徑
// nsbundle : 乙個nsbundle代表乙個資料夾
// 利用mainbundle就可以訪問軟體資源包中的任何資源
nsbundle *bundle = [nsbundle mainbundle];
// 獲得imagedata.plist的全路徑
nsstring *path = [bundle pathforresource:@"imagedata" oftype:@"plist"];
_imagedata = [nsarray arraywithcontentsoffile:path];
pyecharts 通過本地載入js檔案
參考鏈結,博主寫的很好原博文鏈結 條形圖from pyecharts.charts import bar from pyecharts import options as opts from pyecharts.globals import themetype bar bar init opts o...
通過UIWebView載入讀取本地檔案
uiwebview是蘋果自帶的框架,也算是蘋果程式內部的瀏覽器,可以瀏覽web網頁,也可以開啟html htm pdf docx txt等格式的文字檔案,其實蘋果自帶的瀏覽器safari就是用uiwebview來實現的,具體原理簡單的說就是伺服器將mime的識別符號等放入傳送的資料中,然後告訴瀏覽器...
通過mapper介面載入對映檔案
根據 id 查詢 user 表資料 public user selectuserbyid int id throws exception 向 user 表插入一條資料 public void insertuser user user throws exception 根據 id 修改 user 表資...