영구 저장 장치에 임의의 이름과 URL이 있음을 지정하기 위해 NSPersistentStoreUnbiquitousContentNameKey와 NSPersistentStoreUnbiquitousContentURLKey의 두 키를 사용하고 있습니다. 그러나이 키는 iOS 10.0에서 사용되지 않습니다. 대체 API를 사용하여이 사용되지 않는 API를 제거해야합니다.iOS 10.0 코어 데이터의 NSPersistentStoreUpiquitousContentNameKey 키와 교체하십시오.
-(NSPersistentStoreCoordinator *)persistentStoreCoordinator
{
//Return if the persistance store exists.
if(__persistentStoreCoordinator != nil) {
return __persistentStoreCoordinator;
}
__persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel: [self managedObjectModel]];
NSPersistentStoreCoordinator *psc = __persistentStoreCoordinator;
NSMutableDictionary *options = [NSMutableDictionary dictionary];
[options setObject:iCloudEnabledAppID forKey:NSPersistentStoreUbiquitousContentNameKey];
[options setObject:iCloudLogsPath forKey:NSPersistentStoreUbiquitousContentURLKey];
[options setObject:NSFileProtectionComplete forKey:NSPersistentStoreFileProtectionKey];
[psc lock];
return __persistentStoreCoordinator;
}
iOS 10.0 릴리스 노트를 완료했지만 이에 대한 해결 방법을 찾지 못했습니다. 이 키들에 대체 항목이 있습니까?
미리 감사드립니다.