[CoreData] Update framework for Xcode 12 beta 4. (#9405)

Co-authored-by: Whitney Schmidt <whschm@microsoft.com>
This commit is contained in:
Manuel de la Pena 2020-08-19 20:09:35 -04:00 коммит произвёл GitHub
Родитель d168637be4
Коммит add9f54722
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 173 добавлений и 184 удалений

Просмотреть файл

@ -226,4 +226,20 @@ namespace CoreData {
DryRun = 1 << 1,
PrintSchema = 1 << 2,
}
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Native]
public enum NSPersistentCloudKitContainerEventResultType : long {
Events = 0,
CountEvents,
}
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Native]
public enum NSPersistentCloudKitContainerEventType : long {
Setup,
Import,
Export,
}
}

Просмотреть файл

@ -1136,6 +1136,34 @@ namespace CoreData
[Watch (4, 0), TV (11, 0), Mac (10, 13), iOS (11, 0)]
[NullAllowed, Export ("transactionAuthor")]
string TransactionAuthor { get; set; }
[Notification (typeof (NSManagedObjectsIdsChangedEventArgs))]
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Field ("NSManagedObjectContextDidMergeChangesObjectIDsNotification")]
NSString DidMergeChangesObjectIdsNotification { get; }
[Notification (typeof (NSManagedObjectsIdsChangedEventArgs))]
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Field ("NSManagedObjectContextDidSaveObjectIDsNotification")]
NSString DidSaveObjectIdsNotification { get; }
}
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
interface NSManagedObjectsIdsChangedEventArgs {
[Export ("NSDeletedObjectIDsKey")]
NSSet DeletedObjectIds { get; }
[Export ("NSInsertedObjectIDsKey")]
NSSet InsertedObjectIdsKey { get; }
[Export ("NSInvalidatedObjectIDsKey")]
NSSet InvalidatedObjectIdsKey { get; }
[Export ("NSRefreshedObjectIDsKey")]
NSSet RefreshedObjectIdsKey { get; }
[Export ("NSUpdatedObjectIDsKey")]
NSSet UpdatedObjectIdsKey { get; }
}
interface NSManagedObjectChangeEventArgs {
@ -2492,6 +2520,13 @@ namespace CoreData
NSDictionary[] ConflictingSnapshots { get; }
}
#if XAMCORE_4_0
delegate bool NSBatchInsertRequestDictionaryHandler (NSMutableDictionary<NSString, NSObject> dictionary);
#else
delegate bool NSBatchInsertRequestDictionaryHandler (NSMutableDictionary dictionary);
#endif
delegate bool NSBatchInsertRequestManagedObjectHandler (NSManagedObject managedObject);
[Watch (6,0), TV (13,0), Mac (10,15), iOS (13,0)]
[BaseType (typeof(NSPersistentStoreRequest))]
[DisableDefaultCtor] // NSInternalInconsistencyException Reason: -init results in undefined behavior for NSBatchInsertRequest
@ -2504,6 +2539,22 @@ namespace CoreData
[Export ("init")]
IntPtr Constructor ();
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Export ("initWithEntity:dictionaryHandler:")]
IntPtr Constructor (NSEntityDescription entity, NSBatchInsertRequestDictionaryHandler handler);
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Export ("initWithEntity:managedObjectHandler:")]
IntPtr Constructor (NSEntityDescription entity, NSBatchInsertRequestManagedObjectHandler handler);
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Export ("initWithEntityName:dictionaryHandler:")]
IntPtr Constructor (string entityName, NSBatchInsertRequestDictionaryHandler handler);
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Export ("initWithEntityName:managedObjectHandler:")]
IntPtr Constructor (string entityName, NSBatchInsertRequestManagedObjectHandler handler);
[Export ("entityName")]
string EntityName { get; }
@ -2520,11 +2571,31 @@ namespace CoreData
[Export ("batchInsertRequestWithEntityName:objects:")]
NSBatchInsertRequest BatchInsertRequest (string entityName, NSDictionary<NSString, NSObject>[] dictionaries);
[DesignatedInitializer]
[Export ("initWithEntityName:objects:")]
IntPtr Constructor (string entityName, NSDictionary<NSString, NSObject>[] dictionaries);
[DesignatedInitializer]
[Export ("initWithEntity:objects:")]
IntPtr Constructor (NSEntityDescription entity, NSDictionary<NSString, NSObject>[] dictionaries);
[Watch (7, 0), TV (14, 0), Mac (11, 0), iOS (14, 0)]
[NullAllowed, Export ("dictionaryHandler", ArgumentSemantic.Copy)]
NSBatchInsertRequestDictionaryHandler DictionaryHandler { get; set; }
[Watch (7, 0), TV (14, 0), Mac (11, 0), iOS (14, 0)]
[NullAllowed, Export ("managedObjectHandler", ArgumentSemantic.Copy)]
NSBatchInsertRequestManagedObjectHandler ManagedObjectHandler { get; set; }
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Static]
[Export ("batchInsertRequestWithEntityName:dictionaryHandler:")]
NSBatchInsertRequest CreateBatchInsertRequest (string entityName, NSBatchInsertRequestDictionaryHandler handler);
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Static]
[Export ("batchInsertRequestWithEntityName:managedObjectHandler:")]
NSBatchInsertRequest CreateBatchInsertRequest (string entityName, NSBatchInsertRequestManagedObjectHandler handler);
}
[Watch (6,0), TV (13,0), Mac (10,15), iOS (13,0)]
@ -2569,6 +2640,18 @@ namespace CoreData
[Export ("recordIDsForManagedObjectIDs:")]
NSDictionary<NSManagedObjectID, CKRecordID> GetRecordIds (NSManagedObjectID[] managedObjectIds);
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Export ("canUpdateRecordForManagedObjectWithID:")]
bool CanUpdateRecord (NSManagedObjectID objectID);
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Export ("canDeleteRecordForManagedObjectWithID:")]
bool CanDeleteRecord (NSManagedObjectID objectID);
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[Export ("canModifyManagedObjectsInStore:")]
bool CanModifyManagedObjects (NSPersistentStore store);
}
[Watch (6,0), TV (13,0), Mac (10,15), iOS (13,0)]
@ -2581,5 +2664,79 @@ namespace CoreData
[Export ("initWithContainerIdentifier:")]
[DesignatedInitializer]
IntPtr Constructor (string containerIdentifier);
[Watch (7, 0), TV (14, 0), Mac (11, 0), iOS (14, 0)]
[Export ("databaseScope", ArgumentSemantic.Assign)]
CKDatabaseScope DatabaseScope { get; set; }
}
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[BaseType (typeof(NSObject))]
[DisableDefaultCtor]
interface NSPersistentCloudKitContainerEvent : NSCopying {
[Export ("identifier", ArgumentSemantic.Strong)]
NSUuid Identifier { get; }
[Export ("storeIdentifier", ArgumentSemantic.Strong)]
string StoreIdentifier { get; }
[Export ("type")]
NSPersistentCloudKitContainerEventType Type { get; }
[Export ("startDate", ArgumentSemantic.Strong)]
NSDate StartDate { get; }
[NullAllowed, Export ("endDate", ArgumentSemantic.Strong)]
NSDate EndDate { get; }
[Export ("succeeded")]
bool Succeeded { get; }
[NullAllowed, Export ("error", ArgumentSemantic.Strong)]
NSError Error { get; }
[Notification]
[Watch (7, 0), TV (14, 0), Mac (11, 0), iOS (14, 0)]
[Field ("NSPersistentCloudKitContainerEventChangedNotification")]
NSString ChangedNotification { get; }
[Watch (7, 0), TV (14, 0), Mac (11, 0), iOS (14, 0)]
[Field ("NSPersistentCloudKitContainerEventUserInfoKey")]
NSString UserInfoKey { get; }
}
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[BaseType (typeof (NSPersistentStoreRequest))]
interface NSPersistentCloudKitContainerEventRequest {
[Export ("resultType", ArgumentSemantic.Assign)]
NSPersistentCloudKitContainerEventResultType ResultType { get; set; }
[Static]
[Export ("fetchEventsAfterDate:")]
NSPersistentCloudKitContainerEventRequest FetchEventsAfter (NSDate date);
[Static]
[Export ("fetchEventsAfterEvent:")]
NSPersistentCloudKitContainerEventRequest FetchEventsAfter ([NullAllowed] NSPersistentCloudKitContainerEvent @event);
[Static]
[Export ("fetchEventsMatchingFetchRequest:")]
NSPersistentCloudKitContainerEventRequest FetchEvents (NSFetchRequest fetchRequest);
[Static]
[Export ("fetchRequestForEvents")]
NSFetchRequest FetchRequest ();
}
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)]
[BaseType (typeof(NSPersistentStoreResult))]
[DisableDefaultCtor]
interface NSPersistentCloudKitContainerEventResult {
[NullAllowed, Export ("result", ArgumentSemantic.Strong)]
NSObject Result { get; }
[Export ("resultType")]
NSPersistentCloudKitContainerEventResultType ResultType { get; }
}
}

Просмотреть файл

@ -1,46 +0,0 @@
!missing-designated-initializer! NSBatchInsertRequest::initWithEntity:objects: is missing an [DesignatedInitializer] attribute
!missing-designated-initializer! NSBatchInsertRequest::initWithEntityName:objects: is missing an [DesignatedInitializer] attribute
!missing-enum! NSPersistentCloudKitContainerEventResultType not bound
!missing-enum! NSPersistentCloudKitContainerEventType not bound
!missing-field! NSDeletedObjectIDsKey not bound
!missing-field! NSInsertedObjectIDsKey not bound
!missing-field! NSInvalidatedObjectIDsKey not bound
!missing-field! NSManagedObjectContextDidMergeChangesObjectIDsNotification not bound
!missing-field! NSManagedObjectContextDidSaveObjectIDsNotification not bound
!missing-field! NSPersistentCloudKitContainerEventChangedNotification not bound
!missing-field! NSPersistentCloudKitContainerEventUserInfoKey not bound
!missing-field! NSRefreshedObjectIDsKey not bound
!missing-field! NSUpdatedObjectIDsKey not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:dictionaryHandler: not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:managedObjectHandler: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsAfterDate: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsAfterEvent: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsMatchingFetchRequest: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchRequestForEvents not bound
!missing-selector! NSBatchInsertRequest::dictionaryHandler not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:dictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:managedObjectHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:dictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:managedObjectHandler: not bound
!missing-selector! NSBatchInsertRequest::managedObjectHandler not bound
!missing-selector! NSBatchInsertRequest::setDictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::setManagedObjectHandler: not bound
!missing-selector! NSPersistentCloudKitContainer::canDeleteRecordForManagedObjectWithID: not bound
!missing-selector! NSPersistentCloudKitContainer::canModifyManagedObjectsInStore: not bound
!missing-selector! NSPersistentCloudKitContainer::canUpdateRecordForManagedObjectWithID: not bound
!missing-selector! NSPersistentCloudKitContainerEvent::endDate not bound
!missing-selector! NSPersistentCloudKitContainerEvent::error not bound
!missing-selector! NSPersistentCloudKitContainerEvent::identifier not bound
!missing-selector! NSPersistentCloudKitContainerEvent::startDate not bound
!missing-selector! NSPersistentCloudKitContainerEvent::storeIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerEvent::succeeded not bound
!missing-selector! NSPersistentCloudKitContainerEvent::type not bound
!missing-selector! NSPersistentCloudKitContainerEventRequest::resultType not bound
!missing-selector! NSPersistentCloudKitContainerEventRequest::setResultType: not bound
!missing-selector! NSPersistentCloudKitContainerEventResult::result not bound
!missing-selector! NSPersistentCloudKitContainerEventResult::resultType not bound
!missing-selector! NSPersistentCloudKitContainerOptions::databaseScope not bound
!missing-selector! NSPersistentCloudKitContainerOptions::setDatabaseScope: not bound
!missing-type! NSPersistentCloudKitContainerEvent not bound
!missing-type! NSPersistentCloudKitContainerEventRequest not bound
!missing-type! NSPersistentCloudKitContainerEventResult not bound

Просмотреть файл

@ -1,46 +0,0 @@
!missing-designated-initializer! NSBatchInsertRequest::initWithEntity:objects: is missing an [DesignatedInitializer] attribute
!missing-designated-initializer! NSBatchInsertRequest::initWithEntityName:objects: is missing an [DesignatedInitializer] attribute
!missing-enum! NSPersistentCloudKitContainerEventResultType not bound
!missing-enum! NSPersistentCloudKitContainerEventType not bound
!missing-field! NSDeletedObjectIDsKey not bound
!missing-field! NSInsertedObjectIDsKey not bound
!missing-field! NSInvalidatedObjectIDsKey not bound
!missing-field! NSManagedObjectContextDidMergeChangesObjectIDsNotification not bound
!missing-field! NSManagedObjectContextDidSaveObjectIDsNotification not bound
!missing-field! NSPersistentCloudKitContainerEventChangedNotification not bound
!missing-field! NSPersistentCloudKitContainerEventUserInfoKey not bound
!missing-field! NSRefreshedObjectIDsKey not bound
!missing-field! NSUpdatedObjectIDsKey not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:dictionaryHandler: not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:managedObjectHandler: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsAfterDate: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsAfterEvent: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsMatchingFetchRequest: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchRequestForEvents not bound
!missing-selector! NSBatchInsertRequest::dictionaryHandler not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:dictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:managedObjectHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:dictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:managedObjectHandler: not bound
!missing-selector! NSBatchInsertRequest::managedObjectHandler not bound
!missing-selector! NSBatchInsertRequest::setDictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::setManagedObjectHandler: not bound
!missing-selector! NSPersistentCloudKitContainer::canDeleteRecordForManagedObjectWithID: not bound
!missing-selector! NSPersistentCloudKitContainer::canModifyManagedObjectsInStore: not bound
!missing-selector! NSPersistentCloudKitContainer::canUpdateRecordForManagedObjectWithID: not bound
!missing-selector! NSPersistentCloudKitContainerEvent::endDate not bound
!missing-selector! NSPersistentCloudKitContainerEvent::error not bound
!missing-selector! NSPersistentCloudKitContainerEvent::identifier not bound
!missing-selector! NSPersistentCloudKitContainerEvent::startDate not bound
!missing-selector! NSPersistentCloudKitContainerEvent::storeIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerEvent::succeeded not bound
!missing-selector! NSPersistentCloudKitContainerEvent::type not bound
!missing-selector! NSPersistentCloudKitContainerEventRequest::resultType not bound
!missing-selector! NSPersistentCloudKitContainerEventRequest::setResultType: not bound
!missing-selector! NSPersistentCloudKitContainerEventResult::result not bound
!missing-selector! NSPersistentCloudKitContainerEventResult::resultType not bound
!missing-selector! NSPersistentCloudKitContainerOptions::databaseScope not bound
!missing-selector! NSPersistentCloudKitContainerOptions::setDatabaseScope: not bound
!missing-type! NSPersistentCloudKitContainerEvent not bound
!missing-type! NSPersistentCloudKitContainerEventRequest not bound
!missing-type! NSPersistentCloudKitContainerEventResult not bound

Просмотреть файл

@ -1,46 +0,0 @@
!missing-designated-initializer! NSBatchInsertRequest::initWithEntity:objects: is missing an [DesignatedInitializer] attribute
!missing-designated-initializer! NSBatchInsertRequest::initWithEntityName:objects: is missing an [DesignatedInitializer] attribute
!missing-enum! NSPersistentCloudKitContainerEventResultType not bound
!missing-enum! NSPersistentCloudKitContainerEventType not bound
!missing-field! NSDeletedObjectIDsKey not bound
!missing-field! NSInsertedObjectIDsKey not bound
!missing-field! NSInvalidatedObjectIDsKey not bound
!missing-field! NSManagedObjectContextDidMergeChangesObjectIDsNotification not bound
!missing-field! NSManagedObjectContextDidSaveObjectIDsNotification not bound
!missing-field! NSPersistentCloudKitContainerEventChangedNotification not bound
!missing-field! NSPersistentCloudKitContainerEventUserInfoKey not bound
!missing-field! NSRefreshedObjectIDsKey not bound
!missing-field! NSUpdatedObjectIDsKey not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:dictionaryHandler: not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:managedObjectHandler: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsAfterDate: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsAfterEvent: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsMatchingFetchRequest: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchRequestForEvents not bound
!missing-selector! NSBatchInsertRequest::dictionaryHandler not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:dictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:managedObjectHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:dictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:managedObjectHandler: not bound
!missing-selector! NSBatchInsertRequest::managedObjectHandler not bound
!missing-selector! NSBatchInsertRequest::setDictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::setManagedObjectHandler: not bound
!missing-selector! NSPersistentCloudKitContainer::canDeleteRecordForManagedObjectWithID: not bound
!missing-selector! NSPersistentCloudKitContainer::canModifyManagedObjectsInStore: not bound
!missing-selector! NSPersistentCloudKitContainer::canUpdateRecordForManagedObjectWithID: not bound
!missing-selector! NSPersistentCloudKitContainerEvent::endDate not bound
!missing-selector! NSPersistentCloudKitContainerEvent::error not bound
!missing-selector! NSPersistentCloudKitContainerEvent::identifier not bound
!missing-selector! NSPersistentCloudKitContainerEvent::startDate not bound
!missing-selector! NSPersistentCloudKitContainerEvent::storeIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerEvent::succeeded not bound
!missing-selector! NSPersistentCloudKitContainerEvent::type not bound
!missing-selector! NSPersistentCloudKitContainerEventRequest::resultType not bound
!missing-selector! NSPersistentCloudKitContainerEventRequest::setResultType: not bound
!missing-selector! NSPersistentCloudKitContainerEventResult::result not bound
!missing-selector! NSPersistentCloudKitContainerEventResult::resultType not bound
!missing-selector! NSPersistentCloudKitContainerOptions::databaseScope not bound
!missing-selector! NSPersistentCloudKitContainerOptions::setDatabaseScope: not bound
!missing-type! NSPersistentCloudKitContainerEvent not bound
!missing-type! NSPersistentCloudKitContainerEventRequest not bound
!missing-type! NSPersistentCloudKitContainerEventResult not bound

Просмотреть файл

@ -1,46 +0,0 @@
!missing-designated-initializer! NSBatchInsertRequest::initWithEntity:objects: is missing an [DesignatedInitializer] attribute
!missing-designated-initializer! NSBatchInsertRequest::initWithEntityName:objects: is missing an [DesignatedInitializer] attribute
!missing-enum! NSPersistentCloudKitContainerEventResultType not bound
!missing-enum! NSPersistentCloudKitContainerEventType not bound
!missing-field! NSDeletedObjectIDsKey not bound
!missing-field! NSInsertedObjectIDsKey not bound
!missing-field! NSInvalidatedObjectIDsKey not bound
!missing-field! NSManagedObjectContextDidMergeChangesObjectIDsNotification not bound
!missing-field! NSManagedObjectContextDidSaveObjectIDsNotification not bound
!missing-field! NSPersistentCloudKitContainerEventChangedNotification not bound
!missing-field! NSPersistentCloudKitContainerEventUserInfoKey not bound
!missing-field! NSRefreshedObjectIDsKey not bound
!missing-field! NSUpdatedObjectIDsKey not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:dictionaryHandler: not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:managedObjectHandler: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsAfterDate: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsAfterEvent: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchEventsMatchingFetchRequest: not bound
!missing-selector! +NSPersistentCloudKitContainerEventRequest::fetchRequestForEvents not bound
!missing-selector! NSBatchInsertRequest::dictionaryHandler not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:dictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:managedObjectHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:dictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:managedObjectHandler: not bound
!missing-selector! NSBatchInsertRequest::managedObjectHandler not bound
!missing-selector! NSBatchInsertRequest::setDictionaryHandler: not bound
!missing-selector! NSBatchInsertRequest::setManagedObjectHandler: not bound
!missing-selector! NSPersistentCloudKitContainer::canDeleteRecordForManagedObjectWithID: not bound
!missing-selector! NSPersistentCloudKitContainer::canModifyManagedObjectsInStore: not bound
!missing-selector! NSPersistentCloudKitContainer::canUpdateRecordForManagedObjectWithID: not bound
!missing-selector! NSPersistentCloudKitContainerEvent::endDate not bound
!missing-selector! NSPersistentCloudKitContainerEvent::error not bound
!missing-selector! NSPersistentCloudKitContainerEvent::identifier not bound
!missing-selector! NSPersistentCloudKitContainerEvent::startDate not bound
!missing-selector! NSPersistentCloudKitContainerEvent::storeIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerEvent::succeeded not bound
!missing-selector! NSPersistentCloudKitContainerEvent::type not bound
!missing-selector! NSPersistentCloudKitContainerEventRequest::resultType not bound
!missing-selector! NSPersistentCloudKitContainerEventRequest::setResultType: not bound
!missing-selector! NSPersistentCloudKitContainerEventResult::result not bound
!missing-selector! NSPersistentCloudKitContainerEventResult::resultType not bound
!missing-selector! NSPersistentCloudKitContainerOptions::databaseScope not bound
!missing-selector! NSPersistentCloudKitContainerOptions::setDatabaseScope: not bound
!missing-type! NSPersistentCloudKitContainerEvent not bound
!missing-type! NSPersistentCloudKitContainerEventRequest not bound
!missing-type! NSPersistentCloudKitContainerEventResult not bound