2017-05-14 82 views
0

我試圖找到SQL數據庫精簡版的Xcode 8下所使用的iPhone模擬器這是我在尋找的路徑:Xcode 8中sql lite數據庫的位置在哪裏?

Library/Developer/CoreSimulator/Devices/4E8D17D7-BA66-4FED-8A4A-0AF7CCE6DFB7/data/Containers/Data/Application/9C5D7B38-D014-4CD9-A75B-7C6343A1E096/Documents 

我可以看到其他的文件,我已經創建的,但可以」沒有看到任何sql lite數據庫。我正在使用核心數據並保存檢索記錄。我怎麼找到它?

感謝

回答

0

假設你有一個容器是這樣的:在的AppDelegatedidFinishLaunchingWithOptions打印驗證碼

let container = NSPersistentContainer(name: "HitList") 

現在:

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 

let directory = NSPersistentContainer.defaultDirectoryURL() 
let url = directory.appendingPathComponent("HitList" + ".sqlite") 
print("My SQL Location") 
print (url) 

return true 
} 

你會發現路徑sqlite。如果您發現難以搜索,請按命令+空間進行聚光燈搜索,在聚光燈搜索中輸入〜/ Library,您將解鎖通常隱藏的圖書館。然後按照從xcode獲得的路徑進行操作。希望有所幫助。

相關問題