使用swift的Bundle來(lái)獲取項(xiàng)目的文件路徑 , 代碼如下:
guard let jsonPath = Bundle.main.path(forResource: "MainVCSettings.json", ofType: nil) else {
print("獲取路徑失敗")
return
}
print(jsonPath)
一直打印獲取路徑失敗
解決方案:
打開(kāi)build Phases中的 copy Bundle Resources點(diǎn)擊下面的 + 添加需要獲取的文件,重新運(yùn)行就獲取到路徑了