[CoreData] Add support for xcode 15 beta6. (#18837)

Co-authored-by: GitHub Actions Autoformatter <github-actions-autoformatter@xamarin.com>
This commit is contained in:
Manuel de la Pena 2023-08-30 09:42:43 -04:00 коммит произвёл GitHub
Родитель 9a54c6c3a6
Коммит 0e4afa6945
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
10 изменённых файлов: 117 добавлений и 246 удалений

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

@ -58,7 +58,9 @@ namespace CoreData {
[MacCatalyst (13, 1)]
Uri = 1200,
Transformable = 1800,
ObjectID = 2000
ObjectID = 2000,
[Watch (10, 0), TV (17, 0), Mac (14, 0), iOS (17, 0), MacCatalyst (17, 0)]
CompositeAttributeType = 2100,
}
// NUInteger -> NSFetchRequest.h

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

@ -56,6 +56,14 @@ namespace CoreData {
[Field ("NSAffectedStoresErrorKey")]
NSString AffectedStoresForErrorKey { get; }
[Watch (10, 0), TV (17, 0), Mac (14, 0), iOS (17, 0), MacCatalyst (17, 0)]
[Field ("NSPersistentStoreStagedMigrationManagerOptionKey")]
NSString StagedMigrationManagerOptionKey { get; }
[Watch (7, 0), TV (14, 0), Mac (11, 0), iOS (14, 0), MacCatalyst (17, 0)]
[Field ("NSPersistentStoreDeferredLightweightMigrationOptionKey")]
NSString DeferredLightweightMigrationOptionKey { get; }
}
[NoWatch]
@ -1371,6 +1379,16 @@ namespace CoreData {
#else
NSDictionary EntityVersionHashesByName { get; }
#endif
[Watch (10, 0), TV (17, 0), Mac (14, 0), iOS (17, 0), MacCatalyst (17, 0)]
[Static]
[Export ("checksumsForVersionedModelAtURL:error:")]
[return: NullAllowed]
NSDictionary<NSString, NSString> ChecksumsForVersionedModel (NSUrl modelUrl, [NullAllowed] out NSError error);
[Watch (10, 0), TV (17, 0), Mac (14, 0), iOS (17, 0), MacCatalyst (17, 0)]
[Export ("versionChecksum")]
string VersionChecksum { get; }
}
[BaseType (typeof (NSObject))]
@ -2346,6 +2364,14 @@ namespace CoreData {
[Export ("currentPersistentHistoryTokenFromStores:")]
[return: NullAllowed]
NSPersistentHistoryToken GetCurrentPersistentHistoryToken ([NullAllowed] NSObject [] stores);
[Watch (7, 0), TV (14, 0), Mac (11, 0), iOS (14, 0), MacCatalyst (14, 0)]
[Export ("finishDeferredLightweightMigration:")]
bool FinishDeferredLightweightMigration ([NullAllowed] out NSError error);
[Watch (7, 0), TV (14, 0), Mac (11, 0), iOS (14, 0), MacCatalyst (14, 0)]
[Export ("finishDeferredLightweightMigrationTask:")]
bool FinishDeferredLightweightMigrationTask ([NullAllowed] out NSError error);
}
interface NSPersistentStoreCoordinatorStoreChangeEventArgs {
@ -2973,4 +2999,91 @@ namespace CoreData {
NSPersistentCloudKitContainerEventResultType ResultType { get; }
}
[Watch (10, 0), TV (17, 0), Mac (14, 0), iOS (17, 0), MacCatalyst (17, 0)]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface NSStagedMigrationManager {
[Export ("stages", ArgumentSemantic.Strong)]
NSMigrationStage [] Stages { get; }
[NullAllowed, Export ("container", ArgumentSemantic.Strong)]
NSPersistentContainer Container { get; }
[Export ("initWithMigrationStages:")]
[DesignatedInitializer]
NativeHandle Constructor (NSMigrationStage [] stages);
}
[Watch (10, 0), TV (17, 0), Mac (14, 0), iOS (17, 0), MacCatalyst (17, 0)]
[BaseType (typeof (NSObject))]
interface NSMigrationStage {
[NullAllowed, Export ("label")]
string Label { get; set; }
}
[Watch (10, 0), TV (17, 0), Mac (14, 0), iOS (17, 0), MacCatalyst (17, 0)]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface NSManagedObjectModelReference {
[Export ("resolvedModel", ArgumentSemantic.Strong)]
NSManagedObjectModel ResolvedModel { get; }
[Export ("versionChecksum", ArgumentSemantic.Strong)]
string VersionChecksum { get; }
[Export ("initWithModel:versionChecksum:")]
NativeHandle Constructor (NSManagedObjectModel model, string versionChecksum);
[Export ("initWithFileURL:versionChecksum:")]
NativeHandle Constructor (NSUrl fileUrl, string versionChecksum);
[Export ("initWithEntityVersionHashes:inBundle:versionChecksum:")]
NativeHandle Constructor (NSDictionary versionHash, [NullAllowed] NSBundle bundle, string versionChecksum);
[Export ("initWithName:inBundle:versionChecksum:")]
NativeHandle Constructor (string modelName, [NullAllowed] NSBundle bundle, string versionChecksum);
}
[Watch (10, 0), TV (17, 0), Mac (14, 0), iOS (17, 0), MacCatalyst (17, 0)]
[BaseType (typeof (NSMigrationStage))]
[DisableDefaultCtor]
interface NSLightweightMigrationStage {
[Export ("versionChecksums", ArgumentSemantic.Strong)]
string [] VersionChecksums { get; }
[Export ("initWithVersionChecksums:")]
[DesignatedInitializer]
NativeHandle Constructor (string [] versionChecksums);
}
[Watch (10, 0), TV (17, 0), Mac (14, 0), iOS (17, 0), MacCatalyst (17, 0)]
[BaseType (typeof (NSAttributeDescription))]
interface NSCompositeAttributeDescription {
[Export ("elements", ArgumentSemantic.Copy)]
NSAttributeDescription [] Elements { get; set; }
}
[Watch (10, 0), TV (17, 0), Mac (14, 0), iOS (17, 0), MacCatalyst (17, 0)]
[BaseType (typeof (NSMigrationStage))]
[DisableDefaultCtor]
interface NSCustomMigrationStage {
[Export ("currentModel", ArgumentSemantic.Strong)]
NSManagedObjectModelReference CurrentModel { get; }
[Export ("nextModel", ArgumentSemantic.Strong)]
NSManagedObjectModelReference NextModel { get; }
[NullAllowed]
[Export ("willMigrateHandler", ArgumentSemantic.Copy)]
Func<NSStagedMigrationManager, NSCustomMigrationStage, NSError, bool> WillMigrateHandler { get; set; }
[NullAllowed]
[Export ("didMigrateHandler", ArgumentSemantic.Copy)]
Func<NSStagedMigrationManager, NSCustomMigrationStage, NSError, bool> DidMigrateHandler { get; set; }
[Export ("initWithCurrentModelReference:nextModelReference:")]
[DesignatedInitializer]
NativeHandle Constructor (NSManagedObjectModelReference currentModel, NSManagedObjectModelReference nextModel);
}
}

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

@ -762,6 +762,7 @@ namespace Introspection {
case "PKInk":
return true;
// Xcode1 5
case "NSCompositeAttributeDescription":
case "CKSyncEnginePendingDatabaseChange":
case "CKSyncEnginePendingRecordZoneChange":
case "CKSyncEnginePendingZoneDelete":

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

@ -1,35 +0,0 @@
!missing-enum-value! NSAttributeType native value NSCompositeAttributeType = 2100 not bound
!missing-field! NSPersistentStoreDeferredLightweightMigrationOptionKey not bound
!missing-field! NSPersistentStoreStagedMigrationManagerOptionKey not bound
!missing-selector! NSCompositeAttributeDescription::elements not bound
!missing-selector! NSCompositeAttributeDescription::setElements: not bound
!missing-selector! NSCustomMigrationStage::currentModel not bound
!missing-selector! NSCustomMigrationStage::didMigrateHandler not bound
!missing-selector! NSCustomMigrationStage::initWithCurrentModelReference:nextModelReference: not bound
!missing-selector! NSCustomMigrationStage::nextModel not bound
!missing-selector! NSCustomMigrationStage::setDidMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::setWillMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::willMigrateHandler not bound
!missing-selector! NSLightweightMigrationStage::initWithVersionChecksums: not bound
!missing-selector! NSLightweightMigrationStage::versionChecksums not bound
!missing-selector! NSManagedObjectModel::versionChecksum not bound
!missing-selector! NSManagedObjectModelReference::initWithEntityVersionHashes:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithFileURL:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithModel:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithName:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::resolvedModel not bound
!missing-selector! NSManagedObjectModelReference::versionChecksum not bound
!missing-selector! NSMigrationStage::label not bound
!missing-selector! NSMigrationStage::setLabel: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigration: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigrationTask: not bound
!missing-selector! NSStagedMigrationManager::container not bound
!missing-selector! NSStagedMigrationManager::initWithMigrationStages: not bound
!missing-selector! NSStagedMigrationManager::stages not bound
!missing-type! NSCompositeAttributeDescription not bound
!missing-type! NSCustomMigrationStage not bound
!missing-type! NSLightweightMigrationStage not bound
!missing-type! NSManagedObjectModelReference not bound
!missing-type! NSMigrationStage not bound
!missing-type! NSStagedMigrationManager not bound
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound

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

@ -1,35 +0,0 @@
!missing-enum-value! NSAttributeType native value NSCompositeAttributeType = 2100 not bound
!missing-field! NSPersistentStoreDeferredLightweightMigrationOptionKey not bound
!missing-field! NSPersistentStoreStagedMigrationManagerOptionKey not bound
!missing-selector! NSCompositeAttributeDescription::elements not bound
!missing-selector! NSCompositeAttributeDescription::setElements: not bound
!missing-selector! NSCustomMigrationStage::currentModel not bound
!missing-selector! NSCustomMigrationStage::didMigrateHandler not bound
!missing-selector! NSCustomMigrationStage::initWithCurrentModelReference:nextModelReference: not bound
!missing-selector! NSCustomMigrationStage::nextModel not bound
!missing-selector! NSCustomMigrationStage::setDidMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::setWillMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::willMigrateHandler not bound
!missing-selector! NSLightweightMigrationStage::initWithVersionChecksums: not bound
!missing-selector! NSLightweightMigrationStage::versionChecksums not bound
!missing-selector! NSManagedObjectModel::versionChecksum not bound
!missing-selector! NSManagedObjectModelReference::initWithEntityVersionHashes:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithFileURL:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithModel:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithName:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::resolvedModel not bound
!missing-selector! NSManagedObjectModelReference::versionChecksum not bound
!missing-selector! NSMigrationStage::label not bound
!missing-selector! NSMigrationStage::setLabel: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigration: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigrationTask: not bound
!missing-selector! NSStagedMigrationManager::container not bound
!missing-selector! NSStagedMigrationManager::initWithMigrationStages: not bound
!missing-selector! NSStagedMigrationManager::stages not bound
!missing-type! NSCompositeAttributeDescription not bound
!missing-type! NSCustomMigrationStage not bound
!missing-type! NSLightweightMigrationStage not bound
!missing-type! NSManagedObjectModelReference not bound
!missing-type! NSMigrationStage not bound
!missing-type! NSStagedMigrationManager not bound
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound

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

@ -1,35 +0,0 @@
!missing-enum-value! NSAttributeType native value NSCompositeAttributeType = 2100 not bound
!missing-field! NSPersistentStoreDeferredLightweightMigrationOptionKey not bound
!missing-field! NSPersistentStoreStagedMigrationManagerOptionKey not bound
!missing-selector! NSCompositeAttributeDescription::elements not bound
!missing-selector! NSCompositeAttributeDescription::setElements: not bound
!missing-selector! NSCustomMigrationStage::currentModel not bound
!missing-selector! NSCustomMigrationStage::didMigrateHandler not bound
!missing-selector! NSCustomMigrationStage::initWithCurrentModelReference:nextModelReference: not bound
!missing-selector! NSCustomMigrationStage::nextModel not bound
!missing-selector! NSCustomMigrationStage::setDidMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::setWillMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::willMigrateHandler not bound
!missing-selector! NSLightweightMigrationStage::initWithVersionChecksums: not bound
!missing-selector! NSLightweightMigrationStage::versionChecksums not bound
!missing-selector! NSManagedObjectModel::versionChecksum not bound
!missing-selector! NSManagedObjectModelReference::initWithEntityVersionHashes:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithFileURL:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithModel:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithName:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::resolvedModel not bound
!missing-selector! NSManagedObjectModelReference::versionChecksum not bound
!missing-selector! NSMigrationStage::label not bound
!missing-selector! NSMigrationStage::setLabel: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigration: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigrationTask: not bound
!missing-selector! NSStagedMigrationManager::container not bound
!missing-selector! NSStagedMigrationManager::initWithMigrationStages: not bound
!missing-selector! NSStagedMigrationManager::stages not bound
!missing-type! NSCompositeAttributeDescription not bound
!missing-type! NSCustomMigrationStage not bound
!missing-type! NSLightweightMigrationStage not bound
!missing-type! NSManagedObjectModelReference not bound
!missing-type! NSMigrationStage not bound
!missing-type! NSStagedMigrationManager not bound
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound

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

@ -1,35 +0,0 @@
!missing-enum-value! NSAttributeType native value NSCompositeAttributeType = 2100 not bound
!missing-field! NSPersistentStoreDeferredLightweightMigrationOptionKey not bound
!missing-field! NSPersistentStoreStagedMigrationManagerOptionKey not bound
!missing-selector! NSCompositeAttributeDescription::elements not bound
!missing-selector! NSCompositeAttributeDescription::setElements: not bound
!missing-selector! NSCustomMigrationStage::currentModel not bound
!missing-selector! NSCustomMigrationStage::didMigrateHandler not bound
!missing-selector! NSCustomMigrationStage::initWithCurrentModelReference:nextModelReference: not bound
!missing-selector! NSCustomMigrationStage::nextModel not bound
!missing-selector! NSCustomMigrationStage::setDidMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::setWillMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::willMigrateHandler not bound
!missing-selector! NSLightweightMigrationStage::initWithVersionChecksums: not bound
!missing-selector! NSLightweightMigrationStage::versionChecksums not bound
!missing-selector! NSManagedObjectModel::versionChecksum not bound
!missing-selector! NSManagedObjectModelReference::initWithEntityVersionHashes:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithFileURL:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithModel:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithName:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::resolvedModel not bound
!missing-selector! NSManagedObjectModelReference::versionChecksum not bound
!missing-selector! NSMigrationStage::label not bound
!missing-selector! NSMigrationStage::setLabel: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigration: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigrationTask: not bound
!missing-selector! NSStagedMigrationManager::container not bound
!missing-selector! NSStagedMigrationManager::initWithMigrationStages: not bound
!missing-selector! NSStagedMigrationManager::stages not bound
!missing-type! NSCompositeAttributeDescription not bound
!missing-type! NSCustomMigrationStage not bound
!missing-type! NSLightweightMigrationStage not bound
!missing-type! NSManagedObjectModelReference not bound
!missing-type! NSMigrationStage not bound
!missing-type! NSStagedMigrationManager not bound
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound

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

@ -1,35 +0,0 @@
!missing-enum-value! NSAttributeType native value NSCompositeAttributeType = 2100 not bound
!missing-field! NSPersistentStoreDeferredLightweightMigrationOptionKey not bound
!missing-field! NSPersistentStoreStagedMigrationManagerOptionKey not bound
!missing-selector! NSCompositeAttributeDescription::elements not bound
!missing-selector! NSCompositeAttributeDescription::setElements: not bound
!missing-selector! NSCustomMigrationStage::currentModel not bound
!missing-selector! NSCustomMigrationStage::didMigrateHandler not bound
!missing-selector! NSCustomMigrationStage::initWithCurrentModelReference:nextModelReference: not bound
!missing-selector! NSCustomMigrationStage::nextModel not bound
!missing-selector! NSCustomMigrationStage::setDidMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::setWillMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::willMigrateHandler not bound
!missing-selector! NSLightweightMigrationStage::initWithVersionChecksums: not bound
!missing-selector! NSLightweightMigrationStage::versionChecksums not bound
!missing-selector! NSManagedObjectModel::versionChecksum not bound
!missing-selector! NSManagedObjectModelReference::initWithEntityVersionHashes:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithFileURL:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithModel:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithName:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::resolvedModel not bound
!missing-selector! NSManagedObjectModelReference::versionChecksum not bound
!missing-selector! NSMigrationStage::label not bound
!missing-selector! NSMigrationStage::setLabel: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigration: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigrationTask: not bound
!missing-selector! NSStagedMigrationManager::container not bound
!missing-selector! NSStagedMigrationManager::initWithMigrationStages: not bound
!missing-selector! NSStagedMigrationManager::stages not bound
!missing-type! NSCompositeAttributeDescription not bound
!missing-type! NSCustomMigrationStage not bound
!missing-type! NSLightweightMigrationStage not bound
!missing-type! NSManagedObjectModelReference not bound
!missing-type! NSMigrationStage not bound
!missing-type! NSStagedMigrationManager not bound
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound

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

@ -1,35 +0,0 @@
!missing-enum-value! NSAttributeType native value NSCompositeAttributeType = 2100 not bound
!missing-field! NSPersistentStoreDeferredLightweightMigrationOptionKey not bound
!missing-field! NSPersistentStoreStagedMigrationManagerOptionKey not bound
!missing-selector! NSCompositeAttributeDescription::elements not bound
!missing-selector! NSCompositeAttributeDescription::setElements: not bound
!missing-selector! NSCustomMigrationStage::currentModel not bound
!missing-selector! NSCustomMigrationStage::didMigrateHandler not bound
!missing-selector! NSCustomMigrationStage::initWithCurrentModelReference:nextModelReference: not bound
!missing-selector! NSCustomMigrationStage::nextModel not bound
!missing-selector! NSCustomMigrationStage::setDidMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::setWillMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::willMigrateHandler not bound
!missing-selector! NSLightweightMigrationStage::initWithVersionChecksums: not bound
!missing-selector! NSLightweightMigrationStage::versionChecksums not bound
!missing-selector! NSManagedObjectModel::versionChecksum not bound
!missing-selector! NSManagedObjectModelReference::initWithEntityVersionHashes:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithFileURL:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithModel:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithName:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::resolvedModel not bound
!missing-selector! NSManagedObjectModelReference::versionChecksum not bound
!missing-selector! NSMigrationStage::label not bound
!missing-selector! NSMigrationStage::setLabel: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigration: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigrationTask: not bound
!missing-selector! NSStagedMigrationManager::container not bound
!missing-selector! NSStagedMigrationManager::initWithMigrationStages: not bound
!missing-selector! NSStagedMigrationManager::stages not bound
!missing-type! NSCompositeAttributeDescription not bound
!missing-type! NSCustomMigrationStage not bound
!missing-type! NSLightweightMigrationStage not bound
!missing-type! NSManagedObjectModelReference not bound
!missing-type! NSMigrationStage not bound
!missing-type! NSStagedMigrationManager not bound
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound

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

@ -1,35 +0,0 @@
!missing-enum-value! NSAttributeType native value NSCompositeAttributeType = 2100 not bound
!missing-field! NSPersistentStoreDeferredLightweightMigrationOptionKey not bound
!missing-field! NSPersistentStoreStagedMigrationManagerOptionKey not bound
!missing-selector! NSCompositeAttributeDescription::elements not bound
!missing-selector! NSCompositeAttributeDescription::setElements: not bound
!missing-selector! NSCustomMigrationStage::currentModel not bound
!missing-selector! NSCustomMigrationStage::didMigrateHandler not bound
!missing-selector! NSCustomMigrationStage::initWithCurrentModelReference:nextModelReference: not bound
!missing-selector! NSCustomMigrationStage::nextModel not bound
!missing-selector! NSCustomMigrationStage::setDidMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::setWillMigrateHandler: not bound
!missing-selector! NSCustomMigrationStage::willMigrateHandler not bound
!missing-selector! NSLightweightMigrationStage::initWithVersionChecksums: not bound
!missing-selector! NSLightweightMigrationStage::versionChecksums not bound
!missing-selector! NSManagedObjectModel::versionChecksum not bound
!missing-selector! NSManagedObjectModelReference::initWithEntityVersionHashes:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithFileURL:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithModel:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::initWithName:inBundle:versionChecksum: not bound
!missing-selector! NSManagedObjectModelReference::resolvedModel not bound
!missing-selector! NSManagedObjectModelReference::versionChecksum not bound
!missing-selector! NSMigrationStage::label not bound
!missing-selector! NSMigrationStage::setLabel: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigration: not bound
!missing-selector! NSPersistentStoreCoordinator::finishDeferredLightweightMigrationTask: not bound
!missing-selector! NSStagedMigrationManager::container not bound
!missing-selector! NSStagedMigrationManager::initWithMigrationStages: not bound
!missing-selector! NSStagedMigrationManager::stages not bound
!missing-type! NSCompositeAttributeDescription not bound
!missing-type! NSCustomMigrationStage not bound
!missing-type! NSLightweightMigrationStage not bound
!missing-type! NSManagedObjectModelReference not bound
!missing-type! NSMigrationStage not bound
!missing-type! NSStagedMigrationManager not bound
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound