我需要获取CoreData的数据库存储名称,并且只想知道该名称是否与Xcode项目名称有关。
答案 0 :(得分:2)
检查AppDelegate。它将在创建数据库存储的代码中。
NSURL *applicationDocumentsDirectory = [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
NSURL *storeURL = [applicationDocumentsDirectory URLByAppendingPathComponent:@"whateveryouwant.sqlite"];