我希望功能persistentStoreCoordinator.destroyPersistentStoreAtURL(...)。我正在用这样的NSPersistentContainer(name: "MyProject")创建容器,我想知道的是如何获取在第一次调用中使用的persistentStore的URL,最好是在Swift中。

非常感谢。

最佳答案

NSPersistentContainer具有persistentStoreDescriptions属性。

该数组描述了在协调器中加载的商店,包括其URL。

10-07 18:36