This commit is contained in:
Sebastien Pouliot 2019-07-02 23:34:24 -04:00 коммит произвёл GitHub
Родитель 1416e4a945
Коммит 71a657d2c5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
84 изменённых файлов: 859 добавлений и 369 удалений

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

@ -44,8 +44,8 @@ IOS_PACKAGE_UPDATE_ID=$(shell printf "2%02d%02d%02d%03d" $(IOS_PACKAGE_VERSION_M
# Xcode version should have both a major and a minor version (even if the minor version is 0)
XCODE_VERSION=11.0
XCODE_URL=http://xamarin-storage/bot-provisioning/xcodes/Xcode_11_Beta_2.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode11-beta2.app/Contents/Developer
XCODE_URL=http://xamarin-storage/bot-provisioning/xcodes/Xcode_11_Beta_3.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode11-beta3.app/Contents/Developer
XCODE94_VERSION=9.4
XCODE94_URL=http://xamarin-storage/bot-provisioning/xcodes/Xcode_9.4.xip

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

@ -43,5 +43,5 @@
# line changed in git).
#
IOS_PACKAGE_VERSION=12.99.0.$(IOS_COMMIT_DISTANCE)
MAC_PACKAGE_VERSION=5.99.0.$(MAC_COMMIT_DISTANCE)
IOS_PACKAGE_VERSION=12.99.1.$(IOS_COMMIT_DISTANCE)
MAC_PACKAGE_VERSION=5.99.1.$(MAC_COMMIT_DISTANCE)

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

@ -137,7 +137,6 @@ namespace MonoTouch {
public const string NaturalLanguageLibrary = "/System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage";
// iOS 13.0
public const string SoundAnalysisLibrary = "/System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis";
public const string IncomingCallNotificationsLibrary = "/System/Library/Frameworks/IncomingCallNotifications.framework/IncomingCallNotifications";
public const string BackgroundTasksLibrary = "/System/Library/Frameworks/BackgroundTasks.framework/BackgroundTasks";
public const string PencilKitLibrary = "/System/Library/Frameworks/PencilKit.framework/PencilKit";
}

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

@ -160,7 +160,6 @@ namespace MonoMac {
public const string DeviceCheckLibrary = "/System/Library/Frameworks/DeviceCheck.framework/DeviceCheck";
public const string PushKitLibrary = "/System/Library/Frameworks/PushKit.framework/PushKit";
public const string SoundAnalysisLibrary = "/System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis";
public const string IncomingCallNotificationsLibrary = "/System/Library/Frameworks/IncomingCallNotifications.framework/IncomingCallNotifications";
public const string PencilKitLibrary = "/System/Library/Frameworks/PencilKit.framework/PencilKit";
public const string SpeechLibrary = "/System/Library/Frameworks/Speech.framework/Speech";
}

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

@ -5800,4 +5800,21 @@ namespace CoreImage {
[BaseType (typeof (CIFilter))]
interface CIGaborGradients {
}
[CoreImageFilter]
[iOS (13,0)]
[TV (13,0)]
[Mac (10,15, onlyOn64: true)]
[BaseType (typeof (CIFilter))]
interface CIRoundedRectangleGenerator {
[CoreImageFilterProperty ("inputExtent")]
CIVector Extent { get; set; }
[CoreImageFilterProperty ("inputRadius")]
float Radius { get; set; }
[CoreImageFilterProperty ("inputColor")]
CIColor Color { get; set; }
}
}

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

@ -1764,7 +1764,6 @@ MAC_FRAMEWORKS = \
ImageIO \
ImageCaptureCore \
ImageKit \
IncomingCallNotifications \
Intents \
IOSurface \
iTunesLibrary \
@ -1859,7 +1858,6 @@ IOS_FRAMEWORKS = \
IdentityLookup \
IdentityLookupUI \
ImageIO \
IncomingCallNotifications \
Intents \
IntentsUI \
IOSurface \

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

@ -1806,12 +1806,6 @@ namespace UIKit {
[DisableDefaultCtor]
interface UIAction {
[Export ("options")]
UIActionOptions Options { get; }
[Static]
[Export ("actionWithTitle:image:options:handler:")]
UIAction Create (string title, [NullAllowed] UIImage image, UIActionOptions options, UIActionHandler handler);
}
interface IUIActionSheetDelegate {}
@ -7676,7 +7670,7 @@ namespace UIKit {
[iOS (13,0), TV (13,0), NoWatch]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface UIMenuElement : NSCopying {
interface UIMenuElement : NSCopying, NSSecureCoding {
[Export ("title")]
string Title { get; }

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

@ -54,7 +54,7 @@ namespace Introspection {
static Type CIFilterType = typeof (CIFilter);
#if false
#if true
static TextWriter BindingOutput;
#else
static TextWriter BindingOutput = Console.Out;

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

@ -235,6 +235,9 @@ namespace Introspection {
return Runtime.Arch == Arch.SIMULATOR;
case "ICNotificationManagerConfiguration": // This works on device but not on simulator, and docs explicitly says it is user creatable
return Runtime.Arch == Arch.SIMULATOR;
// xcode 11 beta 3
case "EKReminder": // https://github.com/xamarin/maccore/issues/1832
return TestRuntime.CheckXcodeVersion (11, 0);
default:
return base.Skip (type);
}

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

@ -58,7 +58,8 @@ namespace MonoTouchFixtures.CoreGraphics {
Assert.That (CGDataProviderCreateWithFilename (null), Is.EqualTo (IntPtr.Zero), "CGDataProviderCreateWithFilename");
Assert.That (CGDataProviderCreateWithURL (IntPtr.Zero), Is.EqualTo (IntPtr.Zero), "CGDataConsumerCreateWithURL");
Assert.That (CGDataProviderCreateWithCFData (IntPtr.Zero), Is.EqualTo (IntPtr.Zero), "CGDataProviderCreateWithCFData");
Assert.That (CGDataProviderCreateWithData (IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero), Is.EqualTo (IntPtr.Zero), "CGDataProviderCreateWithData");
// crash with iOS 13 beta 3
// Assert.That (CGDataProviderCreateWithData (IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero), Is.EqualTo (IntPtr.Zero), "CGDataProviderCreateWithData");
}
[Test]

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

@ -33,6 +33,7 @@ using nuint=global::System.UInt32;
namespace MonoTouchFixtures.EventKit {
[Ignore ("default EKReminder constructor fails in xcode 11 beta 3 - https://github.com/xamarin/maccore/issues/1832")]
[TestFixture]
[Preserve (AllMembers = true)]
public class ReminderTest

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

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

@ -7,8 +7,6 @@
!missing-selector! UINavigationBar::tintColor not bound
!missing-selector! UISearchBar::setTintColor: not bound
!missing-selector! UISearchBar::tintColor not bound
!missing-selector! UISegmentedControl::setTintColor: not bound
!missing-selector! UISegmentedControl::tintColor not bound
!missing-selector! UITabBar::setTintColor: not bound
!missing-selector! UITabBar::tintColor not bound

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

@ -61,8 +61,6 @@
!missing-selector! ARCoachingOverlayView::setGoal: not bound
!missing-selector! ARCoachingOverlayView::setSession: not bound
!missing-selector! ARCoachingOverlayView::setSessionProvider: not bound
!missing-selector! ARCollaborationData::data not bound
!missing-selector! ARCollaborationData::initWithData: not bound
!missing-selector! ARConfiguration::frameSemantics not bound
!missing-selector! ARConfiguration::setFrameSemantics: not bound
!missing-selector! ARFaceTrackingConfiguration::isWorldTrackingEnabled not bound
@ -150,3 +148,7 @@
!missing-type! ARSkeleton3D not bound
!missing-type! ARSkeletonDefinition not bound
!missing-type! ARTrackedRaycast not bound
## appended from unclassified file
!missing-enum! ARCollaborationDataPriority not bound
!missing-selector! ARCollaborationData::priority not bound
!missing-selector! ARSkeletonDefinition::jointCount not bound

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

@ -131,3 +131,137 @@
## appended from unclassified file
!missing-field! AVContentKeyRequestRequiresValidationDataInSecureTokenKey not bound
!missing-selector! AVAudioSourceNode::initWithFormat:renderBlock: not bound
## appended from unclassified file
!missing-enum! AVMovieWritingOptions not bound
!missing-field! AVFragmentedMovieContainsMovieFragmentsDidChangeNotification not bound
!missing-field! AVFragmentedMovieDurationDidChangeNotification not bound
!missing-field! AVFragmentedMovieTrackSegmentsDidChangeNotification not bound
!missing-field! AVFragmentedMovieTrackTimeRangeDidChangeNotification not bound
!missing-field! AVFragmentedMovieWasDefragmentedNotification not bound
!missing-field! AVMovieReferenceRestrictionsKey not bound
!missing-selector! +AVFragmentedMovieMinder::fragmentedMovieMinderWithMovie:mindingInterval: not bound
!missing-selector! +AVMovie::movieTypes not bound
!missing-selector! +AVMovie::movieWithData:options: not bound
!missing-selector! +AVMovie::movieWithURL:options: not bound
!missing-selector! +AVMutableMovie::movieWithData:options:error: not bound
!missing-selector! +AVMutableMovie::movieWithSettingsFromMovie:options:error: not bound
!missing-selector! +AVMutableMovie::movieWithURL:options:error: not bound
!missing-selector! AVFragmentedMovie::tracks not bound
!missing-selector! AVFragmentedMovie::tracksWithMediaCharacteristic: not bound
!missing-selector! AVFragmentedMovie::tracksWithMediaType: not bound
!missing-selector! AVFragmentedMovie::trackWithTrackID: not bound
!missing-selector! AVFragmentedMovieMinder::addFragmentedMovie: not bound
!missing-selector! AVFragmentedMovieMinder::initWithMovie:mindingInterval: not bound
!missing-selector! AVFragmentedMovieMinder::mindingInterval not bound
!missing-selector! AVFragmentedMovieMinder::movies not bound
!missing-selector! AVFragmentedMovieMinder::removeFragmentedMovie: not bound
!missing-selector! AVFragmentedMovieMinder::setMindingInterval: not bound
!missing-selector! AVMediaDataStorage::initWithURL:options: not bound
!missing-selector! AVMediaDataStorage::URL not bound
!missing-selector! AVMovie::canContainMovieFragments not bound
!missing-selector! AVMovie::containsMovieFragments not bound
!missing-selector! AVMovie::data not bound
!missing-selector! AVMovie::defaultMediaDataStorage not bound
!missing-selector! AVMovie::initWithData:options: not bound
!missing-selector! AVMovie::initWithURL:options: not bound
!missing-selector! AVMovie::isCompatibleWithFileType: not bound
!missing-selector! AVMovie::movieHeaderWithFileType:error: not bound
!missing-selector! AVMovie::tracks not bound
!missing-selector! AVMovie::tracksWithMediaCharacteristic: not bound
!missing-selector! AVMovie::tracksWithMediaType: not bound
!missing-selector! AVMovie::trackWithTrackID: not bound
!missing-selector! AVMovie::URL not bound
!missing-selector! AVMovie::writeMovieHeaderToURL:fileType:options:error: not bound
!missing-selector! AVMovieTrack::alternateGroupID not bound
!missing-selector! AVMovieTrack::mediaDataStorage not bound
!missing-selector! AVMovieTrack::mediaDecodeTimeRange not bound
!missing-selector! AVMovieTrack::mediaPresentationTimeRange not bound
!missing-selector! AVMutableCompositionTrack::isEnabled not bound
!missing-selector! AVMutableCompositionTrack::setEnabled: not bound
!missing-selector! AVMutableMovie::addMutableTracksCopyingSettingsFromTracks:options: not bound
!missing-selector! AVMutableMovie::addMutableTrackWithMediaType:copySettingsFromTrack:options: not bound
!missing-selector! AVMutableMovie::defaultMediaDataStorage not bound
!missing-selector! AVMutableMovie::initWithData:options:error: not bound
!missing-selector! AVMutableMovie::initWithSettingsFromMovie:options:error: not bound
!missing-selector! AVMutableMovie::initWithURL:options:error: not bound
!missing-selector! AVMutableMovie::insertEmptyTimeRange: not bound
!missing-selector! AVMutableMovie::insertTimeRange:ofAsset:atTime:copySampleData:error: not bound
!missing-selector! AVMutableMovie::interleavingPeriod not bound
!missing-selector! AVMutableMovie::isModified not bound
!missing-selector! AVMutableMovie::metadata not bound
!missing-selector! AVMutableMovie::mutableTrackCompatibleWithTrack: not bound
!missing-selector! AVMutableMovie::preferredRate not bound
!missing-selector! AVMutableMovie::preferredTransform not bound
!missing-selector! AVMutableMovie::preferredVolume not bound
!missing-selector! AVMutableMovie::removeTimeRange: not bound
!missing-selector! AVMutableMovie::removeTrack: not bound
!missing-selector! AVMutableMovie::scaleTimeRange:toDuration: not bound
!missing-selector! AVMutableMovie::setDefaultMediaDataStorage: not bound
!missing-selector! AVMutableMovie::setInterleavingPeriod: not bound
!missing-selector! AVMutableMovie::setMetadata: not bound
!missing-selector! AVMutableMovie::setModified: not bound
!missing-selector! AVMutableMovie::setPreferredRate: not bound
!missing-selector! AVMutableMovie::setPreferredTransform: not bound
!missing-selector! AVMutableMovie::setPreferredVolume: not bound
!missing-selector! AVMutableMovie::setTimescale: not bound
!missing-selector! AVMutableMovie::timescale not bound
!missing-selector! AVMutableMovie::tracks not bound
!missing-selector! AVMutableMovie::tracksWithMediaCharacteristic: not bound
!missing-selector! AVMutableMovie::tracksWithMediaType: not bound
!missing-selector! AVMutableMovie::trackWithTrackID: not bound
!missing-selector! AVMutableMovieTrack::addTrackAssociationToTrack:type: not bound
!missing-selector! AVMutableMovieTrack::alternateGroupID not bound
!missing-selector! AVMutableMovieTrack::appendSampleBuffer:decodeTime:presentationTime:error: not bound
!missing-selector! AVMutableMovieTrack::cleanApertureDimensions not bound
!missing-selector! AVMutableMovieTrack::encodedPixelsDimensions not bound
!missing-selector! AVMutableMovieTrack::extendedLanguageTag not bound
!missing-selector! AVMutableMovieTrack::hasProtectedContent not bound
!missing-selector! AVMutableMovieTrack::insertEmptyTimeRange: not bound
!missing-selector! AVMutableMovieTrack::insertMediaTimeRange:intoTimeRange: not bound
!missing-selector! AVMutableMovieTrack::insertTimeRange:ofTrack:atTime:copySampleData:error: not bound
!missing-selector! AVMutableMovieTrack::isEnabled not bound
!missing-selector! AVMutableMovieTrack::isModified not bound
!missing-selector! AVMutableMovieTrack::languageCode not bound
!missing-selector! AVMutableMovieTrack::layer not bound
!missing-selector! AVMutableMovieTrack::mediaDataStorage not bound
!missing-selector! AVMutableMovieTrack::metadata not bound
!missing-selector! AVMutableMovieTrack::naturalSize not bound
!missing-selector! AVMutableMovieTrack::preferredMediaChunkAlignment not bound
!missing-selector! AVMutableMovieTrack::preferredMediaChunkDuration not bound
!missing-selector! AVMutableMovieTrack::preferredMediaChunkSize not bound
!missing-selector! AVMutableMovieTrack::preferredTransform not bound
!missing-selector! AVMutableMovieTrack::preferredVolume not bound
!missing-selector! AVMutableMovieTrack::productionApertureDimensions not bound
!missing-selector! AVMutableMovieTrack::removeTimeRange: not bound
!missing-selector! AVMutableMovieTrack::removeTrackAssociationToTrack:type: not bound
!missing-selector! AVMutableMovieTrack::replaceFormatDescription:withFormatDescription: not bound
!missing-selector! AVMutableMovieTrack::sampleReferenceBaseURL not bound
!missing-selector! AVMutableMovieTrack::scaleTimeRange:toDuration: not bound
!missing-selector! AVMutableMovieTrack::setAlternateGroupID: not bound
!missing-selector! AVMutableMovieTrack::setCleanApertureDimensions: not bound
!missing-selector! AVMutableMovieTrack::setEnabled: not bound
!missing-selector! AVMutableMovieTrack::setEncodedPixelsDimensions: not bound
!missing-selector! AVMutableMovieTrack::setExtendedLanguageTag: not bound
!missing-selector! AVMutableMovieTrack::setLanguageCode: not bound
!missing-selector! AVMutableMovieTrack::setLayer: not bound
!missing-selector! AVMutableMovieTrack::setMediaDataStorage: not bound
!missing-selector! AVMutableMovieTrack::setMetadata: not bound
!missing-selector! AVMutableMovieTrack::setModified: not bound
!missing-selector! AVMutableMovieTrack::setNaturalSize: not bound
!missing-selector! AVMutableMovieTrack::setPreferredMediaChunkAlignment: not bound
!missing-selector! AVMutableMovieTrack::setPreferredMediaChunkDuration: not bound
!missing-selector! AVMutableMovieTrack::setPreferredMediaChunkSize: not bound
!missing-selector! AVMutableMovieTrack::setPreferredTransform: not bound
!missing-selector! AVMutableMovieTrack::setPreferredVolume: not bound
!missing-selector! AVMutableMovieTrack::setProductionApertureDimensions: not bound
!missing-selector! AVMutableMovieTrack::setSampleReferenceBaseURL: not bound
!missing-selector! AVMutableMovieTrack::setTimescale: not bound
!missing-selector! AVMutableMovieTrack::timescale not bound
!missing-type! AVFragmentedMovie not bound
!missing-type! AVFragmentedMovieMinder not bound
!missing-type! AVFragmentedMovieTrack not bound
!missing-type! AVMediaDataStorage not bound
!missing-type! AVMovie not bound
!missing-type! AVMovieTrack not bound
!missing-type! AVMutableMovie not bound
!missing-type! AVMutableMovieTrack not bound

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

@ -0,0 +1,11 @@
!incorrect-protocol-member! CPSessionConfigurationDelegate::sessionConfiguration:limitedUserInterfacesChanged: is OPTIONAL and should NOT be abstract
!missing-enum! CPAmbientLightStatus not bound
!missing-field! CPTemplateApplicationSceneSessionRoleApplication not bound
!missing-protocol! CPTemplateApplicationSceneDelegate not bound
!missing-protocol-member! CPSessionConfigurationDelegate::sessionConfiguration:ambientLightStatusChanged: not found
!missing-selector! CPSessionConfiguration::ambientLightStatus not bound
!missing-selector! CPTemplateApplicationScene::carWindow not bound
!missing-selector! CPTemplateApplicationScene::delegate not bound
!missing-selector! CPTemplateApplicationScene::interfaceController not bound
!missing-selector! CPTemplateApplicationScene::setDelegate: not bound
!missing-type! CPTemplateApplicationScene not bound

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

@ -32,3 +32,21 @@
!missing-type! NSPersistentCloudKitContainerOptions not bound
## appended from unclassified file
!missing-selector! NSPersistentStoreCoordinator::currentPersistentHistoryTokenFromStores: not bound
## appended from unclassified file
!missing-enum! NSBatchInsertRequestResultType not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:objects: not bound
!missing-selector! NSBatchInsertRequest::entity not bound
!missing-selector! NSBatchInsertRequest::entityName not bound
!missing-selector! NSBatchInsertRequest::init not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:andObjects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:objects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:andObjects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:objects: not bound
!missing-selector! NSBatchInsertRequest::objectsToInsert not bound
!missing-selector! NSBatchInsertRequest::resultType not bound
!missing-selector! NSBatchInsertRequest::setObjectsToInsert: not bound
!missing-selector! NSBatchInsertRequest::setResultType: not bound
!missing-selector! NSBatchInsertResult::result not bound
!missing-selector! NSBatchInsertResult::resultType not bound
!missing-type! NSBatchInsertRequest not bound
!missing-type! NSBatchInsertResult not bound

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

@ -350,3 +350,9 @@
!missing-selector! +CIFilter::keystoneCorrectionHorizontalFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionVerticalFilter not bound
!missing-selector! +CIFilter::perspectiveRotateFilter not bound
## appended from unclassified file
!missing-field! kCIInputEnableEDRModeKey not bound
!missing-protocol! CIFourCoordinateGeometryFilter not bound
!missing-protocol! CIRoundedRectangleGenerator not bound
!missing-selector! +CIFilter::roundedRectangleGeneratorFilter not bound
!missing-selector! CIImage::imageByApplyingTransform:highQualityDownsample: not bound

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

@ -34,7 +34,6 @@
!missing-selector! MLModelConfiguration::updateParameters not bound
!missing-selector! MLModelDescription::isUpdatable not bound
!missing-selector! MLModelDescription::trainingInputDescriptionsByName not bound
!missing-selector! MLModelDescription::updateParameterDescriptionsByKey not bound
!missing-selector! MLNumericConstraint::enumeratedNumbers not bound
!missing-selector! MLNumericConstraint::maxNumber not bound
!missing-selector! MLNumericConstraint::minNumber not bound
@ -62,3 +61,11 @@
!missing-type! MLUpdateContext not bound
!missing-type! MLUpdateProgressHandlers not bound
!missing-type! MLUpdateTask not bound
## appended from unclassified file
!missing-selector! +MLParameterKey::seed not bound
!missing-selector! +MLParameterKey::shuffle not bound
!missing-selector! MLKey::scope not bound
!missing-selector! MLModelConfiguration::parameters not bound
!missing-selector! MLModelConfiguration::setParameters: not bound
!missing-selector! MLModelDescription::parameterDescriptionsByKey not bound
!missing-selector! MLParameterKey::scopedTo: not bound

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

@ -9,3 +9,7 @@
## appended from unclassified file
!missing-field! kCTFontManagerErrorFontAssetNameKey not bound
!missing-pinvoke! CTFontManagerRegisterFontsWithAssetNames is not bound
## appended from unclassified file
!missing-field! kCTTrackingAttributeName not bound
!missing-pinvoke! CTFontManagerCreateFontDescriptorsFromData is not bound
!missing-pinvoke! CTRunGetBaseAdvancesAndOrigins is not bound

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

@ -27,7 +27,6 @@
!missing-selector! NSFileProviderItemVersion::contentVersion not bound
!missing-selector! NSFileProviderItemVersion::initWithContentVersion:metadataVersion: not bound
!missing-selector! NSFileProviderItemVersion::metadataVersion not bound
!missing-selector! NSFileProviderManager::downloadItemWithIdentifier:downloadPolicy:completionHandler: not bound
!missing-selector! NSFileProviderManager::enumeratorForMaterializedItems not bound
!missing-selector! NSFileProviderManager::evictItemWithIdentifier:completionHandler: not bound
!missing-selector! NSFileProviderManager::getUserVisibleURLForItemIdentifier:completionHandler: not bound
@ -43,3 +42,5 @@
!missing-type! NSFileProviderSearchQuery not bound
## appended from unclassified file
!missing-selector! NSFileProviderExtension::performActionWithIdentifier:onItemsWithIdentifiers:completionHandler: not bound
## appended from unclassified file
!missing-selector! NSFileProviderManager::setDownloadPolicy:forItemWithIdentifier:completionHandler: not bound

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

@ -1,3 +0,0 @@
!missing-selector! FPUIActionExtensionController::extensionContext not bound
!missing-selector! FPUIActionExtensionController::performActionWithIdentifier:itemIdentifiers: not bound
!missing-type! FPUIActionExtensionController not bound

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

@ -18,11 +18,40 @@
!deprecated-attribute-missing! NSOperationQueue::operationCount missing a [Deprecated] attribute
!deprecated-attribute-missing! NSOperationQueue::operations missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURL::parameterString missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLCache::initWithMemoryCapacity:diskCapacity:diskPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLConnection::newsstandAssetDownload missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!missing-field! NSInconsistentArchiveException not bound
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
## appended from unclassified file
!deprecated-attribute-missing! NSURLCache::initWithMemoryCapacity:diskCapacity:diskPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDataTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDownloadTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskTransactionMetrics::init missing a [Deprecated] attribute
@ -38,11 +67,8 @@
!missing-field! NSHTTPCookieSameSiteLax not bound
!missing-field! NSHTTPCookieSameSitePolicy not bound
!missing-field! NSHTTPCookieSameSiteStrict not bound
!missing-field! NSInconsistentArchiveException not bound
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-protocol! NSURLSessionWebSocketDelegate not bound
!missing-protocol-conformance! NSOperationQueue should conform to NSProgressReporting
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! +NSDate::now not bound
!missing-selector! +NSListFormatter::localizedStringByJoiningStrings: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
@ -88,37 +114,21 @@
!missing-selector! +NSUnitInformationStorage::zettabits not bound
!missing-selector! +NSUnitInformationStorage::zettabytes not bound
!missing-selector! +NSXPCConnection::currentConnection not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSData::compressedDataUsingAlgorithm:error: not bound
!missing-selector! NSData::decompressedDataUsingAlgorithm:error: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPCookie::sameSitePolicy not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSListFormatter::itemFormatter not bound
!missing-selector! NSListFormatter::locale not bound
!missing-selector! NSListFormatter::setItemFormatter: not bound
!missing-selector! NSListFormatter::setLocale: not bound
!missing-selector! NSListFormatter::stringForObjectValue: not bound
!missing-selector! NSListFormatter::stringFromItems: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableData::compressUsingAlgorithm:error: not bound
!missing-selector! NSMutableData::decompressUsingAlgorithm:error: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSOperationQueue::progress not bound
!missing-selector! NSOrderedCollectionChange::associatedIndex not bound
!missing-selector! NSOrderedCollectionChange::changeType not bound
@ -126,7 +136,6 @@
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index: not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index:associatedIndex: not bound
!missing-selector! NSOrderedCollectionChange::object not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedCollectionDifference::hasChanges not bound
!missing-selector! NSOrderedCollectionDifference::initWithChanges: not bound
!missing-selector! NSOrderedCollectionDifference::initWithInsertIndexes:insertedObjects:removeIndexes:removedObjects: not bound
@ -134,10 +143,6 @@
!missing-selector! NSOrderedCollectionDifference::insertions not bound
!missing-selector! NSOrderedCollectionDifference::inverseDifference not bound
!missing-selector! NSOrderedCollectionDifference::removals not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-selector! NSRelativeDateTimeFormatter::calendar not bound
!missing-selector! NSRelativeDateTimeFormatter::dateTimeStyle not bound
!missing-selector! NSRelativeDateTimeFormatter::formattingContext not bound
@ -153,6 +158,8 @@
!missing-selector! NSRelativeDateTimeFormatter::stringForObjectValue: not bound
!missing-selector! NSRelativeDateTimeFormatter::unitsStyle not bound
!missing-selector! NSURLCache::initWithMemoryCapacity:diskCapacity:directoryURL: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSession::init not bound
!missing-selector! NSURLSession::webSocketTaskWithRequest: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL: not bound
@ -204,10 +211,3 @@
!missing-type! NSURLSessionWebSocketMessage not bound
!missing-type! NSURLSessionWebSocketTask not bound
!missing-type! NSXPCCoder not bound
## appended from unclassified file
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound

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

@ -25,9 +25,3 @@
!missing-selector! GCMotion::setRotationRate: not bound
!missing-selector! GCMotion::setStateFromMotion: not bound
!missing-selector! GCMotion::setUserAcceleration: not bound
!missing-selector! GCRay::direction not bound
!missing-selector! GCRay::initWithOrigin:direction: not bound
!missing-selector! GCRay::origin not bound
!missing-selector! GCRay::setDirection: not bound
!missing-selector! GCRay::setOrigin: not bound
!missing-type! GCRay not bound

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

@ -1,18 +1,7 @@
!deprecated-attribute-missing! GKPlayer::playerID missing a [Deprecated] attribute
!missing-enum! GKTournamentErrorCode not bound
!missing-field! GKRemoteUIApplyThemeKey not bound
!missing-field! GKRemoteUIAuthCancelURL not bound
!missing-field! GKRemoteUIAuthErrorMessage not bound
!missing-field! GKRemoteUIAuthOKURL not bound
!missing-field! GKRemoteUIAuthPassword not bound
!missing-field! GKRemoteUIAuthTitle not bound
!missing-field! GKRemoteUIAuthUserName not bound
!missing-field! GKRemoteUIErrorDomain not bound
!missing-field! GKRemoteUILayoutStyleKey not bound
!missing-field! GKTournamentErrorDomain not bound
!missing-protocol! GKRemoteUIAuxiliaryViewDelegate not bound
!missing-selector! +GKLocalPlayer::local not bound
!missing-selector! +GKRemoteUIController::remoteUIController not bound
!missing-selector! GKLocalPlayer::isMultiplayerGamingRestricted not bound
!missing-selector! GKLocalPlayer::loadChallengableFriendsWithCompletionHandler: not bound
!missing-selector! GKMatchRequest::restrictToAutomatch not bound
@ -21,13 +10,5 @@
!missing-selector! GKMatchRequest::tournamentForInvitePool not bound
!missing-selector! GKPlayer::gamePlayerID not bound
!missing-selector! GKPlayer::teamPlayerID not bound
!missing-selector! GKRemoteUIController::completionHandler not bound
!missing-selector! GKRemoteUIController::error not bound
!missing-selector! GKRemoteUIController::loading not bound
!missing-selector! GKRemoteUIController::presentInParentNavigationController:animated: not bound
!missing-selector! GKRemoteUIController::setCompletionHandler: not bound
!missing-selector! GKRemoteUIController::setShouldApplyGameCenterTheme: not bound
!missing-selector! GKRemoteUIController::shouldApplyGameCenterTheme not bound
!missing-type! GKRemoteUIController not bound
## appended from unclassified file
!missing-selector! GKPlayer::scopedIDsArePersistent not bound

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

@ -10,3 +10,13 @@
!missing-selector! HMAddAccessoryRequest::requiresSetupPayloadURL not bound
!missing-type! HMAccessoryOwnershipToken not bound
!missing-type! HMAddAccessoryRequest not bound
## appended from unclassified file
!missing-enum! HMHomeManagerAuthorizationStatus not bound
!missing-protocol! HMNetworkConfigurationProfileDelegate not bound
!missing-protocol-member! HMHomeManagerDelegate::homeManager:didUpdateAuthorizationStatus: not found
!missing-selector! HMAddAccessoryRequest::accessoryCategory not bound
!missing-selector! HMHomeManager::authorizationStatus not bound
!missing-selector! HMNetworkConfigurationProfile::delegate not bound
!missing-selector! HMNetworkConfigurationProfile::isNetworkAccessRestricted not bound
!missing-selector! HMNetworkConfigurationProfile::setDelegate: not bound
!missing-type! HMNetworkConfigurationProfile not bound

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

@ -282,7 +282,6 @@
!missing-selector! INStartCallIntent::callCapability not bound
!missing-selector! INStartCallIntent::contacts not bound
!missing-selector! INStartCallIntent::destinationType not bound
!missing-selector! INStartCallIntent::initWithAudioRoute:destinationType:contacts:callCapability: not bound
!missing-selector! INStartCallIntentResponse::code not bound
!missing-selector! INStartCallIntentResponse::initWithCode:userActivity: not bound
!missing-selector! INTask::initWithTitle:status:taskType:spatialEventTrigger:temporalEventTrigger:createdDateComponents:modifiedDateComponents:identifier:priority: not bound
@ -393,3 +392,6 @@
!missing-selector! INSetTaskAttributeTemporalEventTriggerResolutionResult::initWithTemporalEventTriggerResolutionResult: not bound
!missing-type! INAddTasksTemporalEventTriggerResolutionResult not bound
!missing-type! INSetTaskAttributeTemporalEventTriggerResolutionResult not bound
## appended from unclassified file
!missing-selector! INStartCallIntent::initWithAudioRoute:destinationType:contacts:recordTypeForRedialing:callCapability: not bound
!missing-selector! INStartCallIntent::recordTypeForRedialing not bound

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

@ -0,0 +1,12 @@
!missing-pinvoke! JSObjectDeletePropertyForKey is not bound
!missing-pinvoke! JSObjectGetPropertyForKey is not bound
!missing-pinvoke! JSObjectHasPropertyForKey is not bound
!missing-pinvoke! JSObjectMakeDeferredPromise is not bound
!missing-pinvoke! JSObjectSetPropertyForKey is not bound
!missing-pinvoke! JSValueIsSymbol is not bound
!missing-pinvoke! JSValueMakeSymbol is not bound
!missing-selector! +JSValue::valueWithNewPromiseInContext:fromExecutor: not bound
!missing-selector! +JSValue::valueWithNewPromiseRejectedWithReason:inContext: not bound
!missing-selector! +JSValue::valueWithNewPromiseResolvedWithResult:inContext: not bound
!missing-selector! +JSValue::valueWithNewSymbolFromDescription:inContext: not bound
!missing-selector! JSValue::isSymbol not bound

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

@ -0,0 +1,5 @@
!missing-selector! +PKInkingTool::convertColor:fromUserInterfaceStyle:to: not bound
!missing-selector! PKToolPicker::colorUserInterfaceStyle not bound
!missing-selector! PKToolPicker::overrideUserInterfaceStyle not bound
!missing-selector! PKToolPicker::setColorUserInterfaceStyle: not bound
!missing-selector! PKToolPicker::setOverrideUserInterfaceStyle: not bound

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

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

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

@ -1,10 +1,6 @@
## we do not (need to) redefine the tintColor at every level, it will be dispatched to the right type
!missing-selector! UIRefreshControl::setTintColor: not bound
!missing-selector! UIRefreshControl::tintColor not bound
!missing-selector! UIStepper::setTintColor: not bound
!missing-selector! UIStepper::tintColor not bound
!missing-selector! UISwitch::setTintColor: not bound
!missing-selector! UISwitch::tintColor not bound
!missing-selector! UIToolbar::setTintColor: not bound
!missing-selector! UIToolbar::tintColor not bound

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

@ -31,7 +31,6 @@
!deprecated-attribute-missing! UICollectionViewDelegate::collectionView:shouldShowMenuForItemAtIndexPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! UIColor::groupTableViewBackgroundColor missing a [Deprecated] attribute
!deprecated-attribute-missing! UIKeyCommand::keyCommandWithInput:modifierFlags:action:discoverabilityTitle: missing a [Deprecated] attribute
!deprecated-attribute-missing! UIKeyCommand::setDiscoverabilityTitle: missing a [Deprecated] attribute
!deprecated-attribute-missing! UIMenuController::setMenuVisible: missing a [Deprecated] attribute
!deprecated-attribute-missing! UIMenuController::setMenuVisible:animated: missing a [Deprecated] attribute
!deprecated-attribute-missing! UIMenuController::setTargetRect:inView: missing a [Deprecated] attribute
@ -401,9 +400,6 @@
!missing-selector! UIBarAppearance::setBackgroundImageContentMode: not bound
!missing-selector! UIBarAppearance::setShadowColor: not bound
!missing-selector! UIBarAppearance::setShadowImage: not bound
!missing-selector! UIBarAppearance::setupDefaultBackground not bound
!missing-selector! UIBarAppearance::setupOpaqueBackground not bound
!missing-selector! UIBarAppearance::setupTransparentBackground not bound
!missing-selector! UIBarAppearance::shadowColor not bound
!missing-selector! UIBarAppearance::shadowImage not bound
!missing-selector! UIBarButtonItemAppearance::configureWithDefaultForStyle: not bound
@ -411,11 +407,9 @@
!missing-selector! UIBarButtonItemAppearance::focused not bound
!missing-selector! UIBarButtonItemAppearance::highlighted not bound
!missing-selector! UIBarButtonItemAppearance::init not bound
!missing-selector! UIBarButtonItemAppearance::initWithBarButtonItemStyle: not bound
!missing-selector! UIBarButtonItemAppearance::initWithCoder: not bound
!missing-selector! UIBarButtonItemAppearance::initWithStyle: not bound
!missing-selector! UIBarButtonItemAppearance::normal not bound
!missing-selector! UIBarButtonItemAppearance::setupDefaultAppearanceForStyle: not bound
!missing-selector! UIBarButtonItemStateAppearance::backgroundImage not bound
!missing-selector! UIBarButtonItemStateAppearance::backgroundImagePositionAdjustment not bound
!missing-selector! UIBarButtonItemStateAppearance::setBackgroundImage: not bound
@ -511,26 +505,6 @@
!missing-selector! UIMenuController::showMenuFromView:rect: not bound
!missing-selector! UIMutableApplicationShortcutItem::setTargetContentIdentifier: not bound
!missing-selector! UIMutableApplicationShortcutItem::targetContentIdentifier not bound
!missing-selector! UIMutableCommand::discoverabilityTitle not bound
!missing-selector! UIMutableCommand::image not bound
!missing-selector! UIMutableCommand::isEnabled not bound
!missing-selector! UIMutableCommand::setDiscoverabilityTitle: not bound
!missing-selector! UIMutableCommand::setEnabled: not bound
!missing-selector! UIMutableCommand::setImage: not bound
!missing-selector! UIMutableCommand::setState: not bound
!missing-selector! UIMutableCommand::setTitle: not bound
!missing-selector! UIMutableCommand::state not bound
!missing-selector! UIMutableCommand::title not bound
!missing-selector! UIMutableKeyCommand::discoverabilityTitle not bound
!missing-selector! UIMutableKeyCommand::image not bound
!missing-selector! UIMutableKeyCommand::isEnabled not bound
!missing-selector! UIMutableKeyCommand::setDiscoverabilityTitle: not bound
!missing-selector! UIMutableKeyCommand::setEnabled: not bound
!missing-selector! UIMutableKeyCommand::setImage: not bound
!missing-selector! UIMutableKeyCommand::setState: not bound
!missing-selector! UIMutableKeyCommand::setTitle: not bound
!missing-selector! UIMutableKeyCommand::state not bound
!missing-selector! UIMutableKeyCommand::title not bound
!missing-selector! UINavigationBar::compactAppearance not bound
!missing-selector! UINavigationBar::scrollEdgeAppearance not bound
!missing-selector! UINavigationBar::setCompactAppearance: not bound
@ -543,13 +517,11 @@
!missing-selector! UINavigationBarAppearance::buttonAppearance not bound
!missing-selector! UINavigationBarAppearance::doneButtonAppearance not bound
!missing-selector! UINavigationBarAppearance::largeTitleTextAttributes not bound
!missing-selector! UINavigationBarAppearance::plainButtonAppearance not bound
!missing-selector! UINavigationBarAppearance::setBackButtonAppearance: not bound
!missing-selector! UINavigationBarAppearance::setBackIndicatorImage:transitionMaskImage: not bound
!missing-selector! UINavigationBarAppearance::setButtonAppearance: not bound
!missing-selector! UINavigationBarAppearance::setDoneButtonAppearance: not bound
!missing-selector! UINavigationBarAppearance::setLargeTitleTextAttributes: not bound
!missing-selector! UINavigationBarAppearance::setPlainButtonAppearance: not bound
!missing-selector! UINavigationBarAppearance::setTitlePositionAdjustment: not bound
!missing-selector! UINavigationBarAppearance::setTitleTextAttributes: not bound
!missing-selector! UINavigationBarAppearance::titlePositionAdjustment not bound
@ -631,10 +603,8 @@
!missing-selector! UITabBarItemAppearance::init not bound
!missing-selector! UITabBarItemAppearance::initWithCoder: not bound
!missing-selector! UITabBarItemAppearance::initWithStyle: not bound
!missing-selector! UITabBarItemAppearance::initWithTabBarItemLayout: not bound
!missing-selector! UITabBarItemAppearance::normal not bound
!missing-selector! UITabBarItemAppearance::selected not bound
!missing-selector! UITabBarItemAppearance::setupDefaultAppearanceForStyle: not bound
!missing-selector! UITabBarItemStateAppearance::badgeBackgroundColor not bound
!missing-selector! UITabBarItemStateAppearance::badgePositionAdjustment not bound
!missing-selector! UITabBarItemStateAppearance::badgeTextAttributes not bound
@ -675,10 +645,8 @@
!missing-selector! UIToolbar::standardAppearance not bound
!missing-selector! UIToolbarAppearance::buttonAppearance not bound
!missing-selector! UIToolbarAppearance::doneButtonAppearance not bound
!missing-selector! UIToolbarAppearance::plainButtonAppearance not bound
!missing-selector! UIToolbarAppearance::setButtonAppearance: not bound
!missing-selector! UIToolbarAppearance::setDoneButtonAppearance: not bound
!missing-selector! UIToolbarAppearance::setPlainButtonAppearance: not bound
!missing-selector! UITraitCollection::accessibilityContrast not bound
!missing-selector! UITraitCollection::hasDifferentColorAppearanceComparedToTraitCollection: not bound
!missing-selector! UITraitCollection::imageConfiguration not bound
@ -744,7 +712,6 @@
!missing-type! UIFontPickerViewControllerConfiguration not bound
!missing-type! UIHoverGestureRecognizer not bound
!missing-type! UILargeContentViewerInteraction not bound
!missing-type! UIMutableCommand not bound
!missing-type! UIMutableKeyCommand not bound
!missing-type! UINavigationBarAppearance not bound
!missing-type! UIScreenshotService not bound
@ -785,3 +752,55 @@
!missing-selector! UIResponder::buildMenuWithBuilder: not bound
!missing-selector! UIResponder::editingInteractionConfiguration not bound
!missing-type! UIMenuSystem not bound
## appended from unclassified file
!deprecated-attribute-missing! UIApplication::beginIgnoringInteractionEvents missing a [Deprecated] attribute
!deprecated-attribute-missing! UIApplication::endIgnoringInteractionEvents missing a [Deprecated] attribute
!deprecated-attribute-missing! UIApplication::isIgnoringInteractionEvents missing a [Deprecated] attribute
!deprecated-attribute-missing! UIApplication::keyWindow missing a [Deprecated] attribute
!deprecated-attribute-missing! UIWindow::setScreen: missing a [Deprecated] attribute
!missing-enum! UIMenuElementAttributes not bound
!missing-enum! UIMenuElementState not bound
!missing-field! UIAccessibilitySpeechAttributeSpellOut not bound
!missing-protocol-conformance! NSLayoutAnchor should conform to NSCoding
!missing-protocol-conformance! NSLayoutAnchor should conform to NSCopying
!missing-protocol-conformance! UIKeyCommand should conform to NSMutableCopying
!missing-selector! +UIAction::actionWithTitle:image:identifier:handler: not bound
!missing-selector! +UICommand::commandWithTitle:image:action:propertyList: not bound
!missing-selector! +UICommand::commandWithTitle:image:action:propertyList:alternates: not bound
!missing-selector! +UIKeyCommand::commandWithTitle:image:action:input:modifierFlags:propertyList: not bound
!missing-selector! +UIKeyCommand::commandWithTitle:image:action:input:modifierFlags:propertyList:alternates: not bound
!missing-selector! UIAction::attributes not bound
!missing-selector! UIAction::discoverabilityTitle not bound
!missing-selector! UIAction::identifier not bound
!missing-selector! UIAction::image not bound
!missing-selector! UIAction::setAttributes: not bound
!missing-selector! UIAction::setDiscoverabilityTitle: not bound
!missing-selector! UIAction::setImage: not bound
!missing-selector! UIAction::setState: not bound
!missing-selector! UIAction::setTitle: not bound
!missing-selector! UIAction::state not bound
!missing-selector! UIAction::title not bound
!missing-selector! UICommand::attributes not bound
!missing-selector! UICommand::image not bound
!missing-selector! UICommand::setAttributes: not bound
!missing-selector! UICommand::setDiscoverabilityTitle: not bound
!missing-selector! UICommand::setEnabled: not bound
!missing-selector! UICommand::setImage: not bound
!missing-selector! UICommand::setState: not bound
!missing-selector! UICommand::setTitle: not bound
!missing-selector! UICommand::title not bound
!missing-selector! UIKeyCommand::alternates not bound
!missing-selector! UIKeyCommand::attributes not bound
!missing-selector! UIKeyCommand::image not bound
!missing-selector! UIKeyCommand::mutableCopy not bound
!missing-selector! UIKeyCommand::propertyList not bound
!missing-selector! UIKeyCommand::setAttributes: not bound
!missing-selector! UIKeyCommand::setImage: not bound
!missing-selector! UIKeyCommand::setState: not bound
!missing-selector! UIKeyCommand::setTitle: not bound
!missing-selector! UIKeyCommand::state not bound
!missing-selector! UIKeyCommand::title not bound
!missing-selector! UISegmentedControl::selectedSegmentTintColor not bound
!missing-selector! UISegmentedControl::setSelectedSegmentTintColor: not bound
!unknown-native-enum! UIActionOptions bound
!unknown-native-enum! UICommandState bound

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

@ -0,0 +1,3 @@
!missing-field! VSAccountProviderAuthenticationSchemeAPI not bound
!missing-selector! VSAccountMetadataRequest::accountProviderAuthenticationToken not bound
!missing-selector! VSAccountMetadataRequest::setAccountProviderAuthenticationToken: not bound

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

@ -0,0 +1,11 @@
!missing-field! NSReadAccessURLDocumentOption not bound
!missing-protocol-member! WKUIDelegate::webView:contextMenuConfigurationForElement:completionHandler: not found
!missing-protocol-member! WKUIDelegate::webView:contextMenuDidEndForElement: not found
!missing-protocol-member! WKUIDelegate::webView:contextMenuForElement:willCommitWithAnimator: not found
!missing-protocol-member! WKUIDelegate::webView:contextMenuWillPresentForElement: not found
!missing-selector! +NSAttributedString::loadFromHTMLWithData:options:completionHandler: not bound
!missing-selector! +NSAttributedString::loadFromHTMLWithFileURL:options:completionHandler: not bound
!missing-selector! +NSAttributedString::loadFromHTMLWithRequest:options:completionHandler: not bound
!missing-selector! +NSAttributedString::loadFromHTMLWithString:options:completionHandler: not bound
!missing-selector! WKPreferences::isFraudulentWebsiteWarningEnabled not bound
!missing-selector! WKPreferences::setFraudulentWebsiteWarningEnabled: not bound

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

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

@ -221,3 +221,7 @@
!missing-field! AVContentKeyRequestRequiresValidationDataInSecureTokenKey not bound
!missing-selector! AVAudioSourceNode::initWithFormat:renderBlock: not bound
!missing-selector! AVCaptureSession::connections not bound
## appended from unclassified file
!missing-field! AVAssetExportPresetAppleProRes4444LPCM not bound
!missing-selector! AVMutableCompositionTrack::isEnabled not bound
!missing-selector! AVMutableCompositionTrack::setEnabled: not bound

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

@ -635,7 +635,6 @@
!missing-protocol-conformance! NSCollectionViewItem should conform to NSCollectionViewElement
!missing-protocol-conformance! NSColorPicker should conform to NSColorPickingDefault
!missing-protocol-conformance! NSFontAssetRequest should conform to NSProgressReporting
!missing-protocol-conformance! NSLayoutConstraint should conform to NSAnimatablePropertyContainer
!missing-protocol-conformance! NSMenu should conform to NSAccessibilityElement
!missing-protocol-conformance! NSMenuItem should conform to NSAccessibilityElement
!missing-protocol-conformance! NSOpenGLContext should conform to NSLocking

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

@ -354,3 +354,21 @@
!missing-type! NSButtonTouchBarItem not bound
!missing-type! NSMenuToolbarItem not bound
!missing-type! NSPickerTouchBarItem not bound
## appended from unclassified file
!missing-selector! +NSStepperTouchBarItem::stepperTouchBarItemWithIdentifier:drawingHandler: not bound
!missing-selector! +NSStepperTouchBarItem::stepperTouchBarItemWithIdentifier:formatter: not bound
!missing-selector! NSStepperTouchBarItem::action not bound
!missing-selector! NSStepperTouchBarItem::customizationLabel not bound
!missing-selector! NSStepperTouchBarItem::increment not bound
!missing-selector! NSStepperTouchBarItem::maxValue not bound
!missing-selector! NSStepperTouchBarItem::minValue not bound
!missing-selector! NSStepperTouchBarItem::setAction: not bound
!missing-selector! NSStepperTouchBarItem::setCustomizationLabel: not bound
!missing-selector! NSStepperTouchBarItem::setIncrement: not bound
!missing-selector! NSStepperTouchBarItem::setMaxValue: not bound
!missing-selector! NSStepperTouchBarItem::setMinValue: not bound
!missing-selector! NSStepperTouchBarItem::setTarget: not bound
!missing-selector! NSStepperTouchBarItem::setValue: not bound
!missing-selector! NSStepperTouchBarItem::target not bound
!missing-selector! NSStepperTouchBarItem::value not bound
!missing-type! NSStepperTouchBarItem not bound

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

@ -30,3 +30,21 @@
!missing-type! NSPersistentCloudKitContainerOptions not bound
## appended from unclassified file
!missing-selector! NSPersistentStoreCoordinator::currentPersistentHistoryTokenFromStores: not bound
## appended from unclassified file
!missing-enum! NSBatchInsertRequestResultType not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:objects: not bound
!missing-selector! NSBatchInsertRequest::entity not bound
!missing-selector! NSBatchInsertRequest::entityName not bound
!missing-selector! NSBatchInsertRequest::init not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:andObjects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:objects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:andObjects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:objects: not bound
!missing-selector! NSBatchInsertRequest::objectsToInsert not bound
!missing-selector! NSBatchInsertRequest::resultType not bound
!missing-selector! NSBatchInsertRequest::setObjectsToInsert: not bound
!missing-selector! NSBatchInsertRequest::setResultType: not bound
!missing-selector! NSBatchInsertResult::result not bound
!missing-selector! NSBatchInsertResult::resultType not bound
!missing-type! NSBatchInsertRequest not bound
!missing-type! NSBatchInsertResult not bound

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

@ -50,31 +50,21 @@
!missing-selector! CHHapticDynamicParameter::setRelativeTime: not bound
!missing-selector! CHHapticDynamicParameter::setValue: not bound
!missing-selector! CHHapticDynamicParameter::value not bound
!missing-selector! CHHapticEngine::audioIsMuted not bound
!missing-selector! CHHapticEngine::createAdvancedPlayerWithPattern:error: not bound
!missing-selector! CHHapticEngine::createPlayerWithPattern:error: not bound
!missing-selector! CHHapticEngine::currentTime not bound
!missing-selector! CHHapticEngine::hapticsIsMuted not bound
!missing-selector! CHHapticEngine::hapticsOnly not bound
!missing-selector! CHHapticEngine::initAndReturnError: not bound
!missing-selector! CHHapticEngine::initWithAudioSession:error: not bound
!missing-selector! CHHapticEngine::muteHapticsWhileRecordingAudio not bound
!missing-selector! CHHapticEngine::playPatternFromData:error: not bound
!missing-selector! CHHapticEngine::playPatternFromURL:error: not bound
!missing-selector! CHHapticEngine::registerAudioResource:options:error: not bound
!missing-selector! CHHapticEngine::resetHandler not bound
!missing-selector! CHHapticEngine::setAudioIsMuted: not bound
!missing-selector! CHHapticEngine::setHapticsIsMuted: not bound
!missing-selector! CHHapticEngine::setHapticsOnly: not bound
!missing-selector! CHHapticEngine::setMuteHapticsWhileRecordingAudio: not bound
!missing-selector! CHHapticEngine::setResetHandler: not bound
!missing-selector! CHHapticEngine::setStoppedHandler: not bound
!missing-selector! CHHapticEngine::setTimeoutHandler: not bound
!missing-selector! CHHapticEngine::startAndReturnError: not bound
!missing-selector! CHHapticEngine::startWithCompletionHandler: not bound
!missing-selector! CHHapticEngine::stoppedHandler not bound
!missing-selector! CHHapticEngine::stopWithCompletionHandler: not bound
!missing-selector! CHHapticEngine::timeoutHandler not bound
!missing-selector! CHHapticEngine::unregisterAudioResource:error: not bound
!missing-selector! CHHapticEvent::duration not bound
!missing-selector! CHHapticEvent::eventParameters not bound
@ -112,3 +102,14 @@
!missing-type! CHHapticParameterCurve not bound
!missing-type! CHHapticParameterCurveControlPoint not bound
!missing-type! CHHapticPattern not bound
## appended from unclassified file
!missing-enum! CHHapticEngineFinishedAction not bound
!missing-selector! CHHapticEngine::isAutoShutdownEnabled not bound
!missing-selector! CHHapticEngine::isMutedForAudio not bound
!missing-selector! CHHapticEngine::isMutedForHaptics not bound
!missing-selector! CHHapticEngine::notifyWhenPlayersFinished: not bound
!missing-selector! CHHapticEngine::playsHapticsOnly not bound
!missing-selector! CHHapticEngine::setAutoShutdownEnabled: not bound
!missing-selector! CHHapticEngine::setIsMutedForAudio: not bound
!missing-selector! CHHapticEngine::setIsMutedForHaptics: not bound
!missing-selector! CHHapticEngine::setPlaysHapticsOnly: not bound

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

@ -352,3 +352,9 @@
!missing-selector! +CIFilter::keystoneCorrectionHorizontalFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionVerticalFilter not bound
!missing-selector! +CIFilter::perspectiveRotateFilter not bound
## appended from unclassified file
!missing-field! kCIInputEnableEDRModeKey not bound
!missing-protocol! CIFourCoordinateGeometryFilter not bound
!missing-protocol! CIRoundedRectangleGenerator not bound
!missing-selector! +CIFilter::roundedRectangleGeneratorFilter not bound
!missing-selector! CIImage::imageByApplyingTransform:highQualityDownsample: not bound

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

@ -34,7 +34,6 @@
!missing-selector! MLModelConfiguration::updateParameters not bound
!missing-selector! MLModelDescription::isUpdatable not bound
!missing-selector! MLModelDescription::trainingInputDescriptionsByName not bound
!missing-selector! MLModelDescription::updateParameterDescriptionsByKey not bound
!missing-selector! MLNumericConstraint::enumeratedNumbers not bound
!missing-selector! MLNumericConstraint::maxNumber not bound
!missing-selector! MLNumericConstraint::minNumber not bound
@ -62,3 +61,11 @@
!missing-type! MLUpdateContext not bound
!missing-type! MLUpdateProgressHandlers not bound
!missing-type! MLUpdateTask not bound
## appended from unclassified file
!missing-selector! +MLParameterKey::seed not bound
!missing-selector! +MLParameterKey::shuffle not bound
!missing-selector! MLKey::scope not bound
!missing-selector! MLModelConfiguration::parameters not bound
!missing-selector! MLModelConfiguration::setParameters: not bound
!missing-selector! MLModelDescription::parameterDescriptionsByKey not bound
!missing-selector! MLParameterKey::scopedTo: not bound

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

@ -3,3 +3,7 @@
!missing-pinvoke! CTFontManagerRegisterFontURLs is not bound
!missing-pinvoke! CTFontManagerUnregisterFontDescriptors is not bound
!missing-pinvoke! CTFontManagerUnregisterFontURLs is not bound
## appended from unclassified file
!missing-field! kCTTrackingAttributeName not bound
!missing-pinvoke! CTFontManagerCreateFontDescriptorsFromData is not bound
!missing-pinvoke! CTRunGetBaseAdvancesAndOrigins is not bound

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

@ -1,71 +1,30 @@
!missing-enum! NSFileProviderCreateItemOptions not bound
!missing-enum! NSFileProviderDeleteItemOptions not bound
!missing-enum! NSFileProviderDownloadPolicy not bound
!missing-enum! NSFileProviderErrorCode not bound
!missing-enum! NSFileProviderItemCapabilities not bound
!missing-enum! NSFileProviderItemField not bound
!missing-enum! NSFileProviderPresenceAuthorizationStatus not bound
!missing-field! NSFileProviderErrorDomain not bound
!missing-field! NSFileProviderErrorItemKey not bound
!missing-field! NSFileProviderErrorNonExistentItemIdentifierKey not bound
!missing-field! NSFileProviderFavoriteRankUnranked not bound
!missing-field! NSFileProviderInitialPageSortedByDate not bound
!missing-field! NSFileProviderInitialPageSortedByName not bound
!missing-field! NSFileProviderRootContainerItemIdentifier not bound
!missing-field! NSFileProviderWorkingSetContainerItemIdentifier not bound
!missing-protocol! NSFileProviderChangeObserver not bound
!missing-protocol! NSFileProviderEnumerationObserver not bound
!missing-protocol! NSFileProviderEnumerator not bound
!missing-protocol! NSFileProviderItem not bound
!missing-protocol! NSFileProviderItemDecorating not bound
!missing-protocol! NSFileProviderItemFlags not bound
!missing-protocol! NSFileProviderServiceSource not bound
!missing-selector! +NSError::fileProviderErrorForCollisionWithItem: not bound
!missing-selector! +NSError::fileProviderErrorForNonExistentItemWithIdentifier: not bound
!missing-selector! +NSError::fileProviderErrorForOutOfDateItem: not bound
!missing-selector! +NSFileProviderManager::addDomain:completionHandler: not bound
!missing-selector! +NSFileProviderManager::getDomainsWithCompletionHandler: not bound
!missing-selector! +NSFileProviderManager::getIdentifierForUserVisibleFileAtURL:completionHandler: not bound
!missing-selector! +NSFileProviderManager::importDomain:fromDirectoryAtURL:completionHandler: not bound
!missing-selector! +NSFileProviderManager::managerForDomain: not bound
!missing-selector! +NSFileProviderManager::placeholderURLForURL: not bound
!missing-selector! +NSFileProviderManager::removeAllDomainsWithCompletionHandler: not bound
!missing-selector! +NSFileProviderManager::removeDomain:completionHandler: not bound
!missing-selector! +NSFileProviderManager::writePlaceholderAtURL:withMetadata:error: not bound
!missing-selector! NSFileProviderDomain::displayName not bound
!missing-selector! NSFileProviderDomain::identifier not bound
!missing-selector! NSFileProviderDomain::initWithIdentifier:displayName:pathRelativeToDocumentStorage: not bound
!missing-selector! NSFileProviderDomain::isDisconnected not bound
!missing-selector! NSFileProviderDomain::pathRelativeToDocumentStorage not bound
!missing-selector! NSFileProviderDomain::setDisconnected: not bound
!missing-selector! NSFileProviderExtension::createItemBasedOnTemplate:fields:contents:options:completionHandler: not bound
!missing-selector! NSFileProviderExtension::currentNSFileProviderExtension not bound
!missing-selector! NSFileProviderExtension::deleteItemWithIdentifier:baseVersion:options:completionHandler: not bound
!missing-selector! NSFileProviderExtension::domain not bound
!missing-selector! NSFileProviderExtension::enumeratorForContainerItemIdentifier:error: not bound
!missing-selector! NSFileProviderExtension::enumeratorForSearchQuery:error: not bound
!missing-selector! NSFileProviderExtension::fetchContentsForItemWithIdentifier:version:completionHandler: not bound
!missing-selector! NSFileProviderExtension::fetchContentsForItemWithIdentifier:version:usingExistingContentsAtURL:existingVersion:completionHandler: not bound
!missing-selector! NSFileProviderExtension::fetchThumbnailsForItemIdentifiers:requestedSize:perThumbnailCompletionHandler:completionHandler: not bound
!missing-selector! NSFileProviderExtension::importDidFinishWithCompletionHandler: not bound
!missing-selector! NSFileProviderExtension::itemChanged:baseVersion:changedFields:contents:completionHandler: not bound
!missing-selector! NSFileProviderExtension::itemForIdentifier:error: not bound
!missing-selector! NSFileProviderExtension::materializedItemsDidChangeWithCompletionHandler: not bound
!missing-selector! NSFileProviderExtension::supportedServiceSourcesForItemIdentifier:error: not bound
!missing-selector! NSFileProviderItemVersion::contentVersion not bound
!missing-selector! NSFileProviderItemVersion::initWithContentVersion:metadataVersion: not bound
!missing-selector! NSFileProviderItemVersion::metadataVersion not bound
!missing-selector! NSFileProviderManager::documentStorageURL not bound
!missing-selector! NSFileProviderManager::downloadItemWithIdentifier:downloadPolicy:completionHandler: not bound
!missing-selector! NSFileProviderManager::enumeratorForMaterializedItems not bound
!missing-selector! NSFileProviderManager::evictItemWithIdentifier:completionHandler: not bound
!missing-selector! NSFileProviderManager::getUserVisibleURLForItemIdentifier:completionHandler: not bound
!missing-selector! NSFileProviderManager::presenceAuthorizationStatus not bound
!missing-selector! NSFileProviderManager::providerIdentifier not bound
!missing-selector! NSFileProviderManager::registerURLSessionTask:forItemWithIdentifier:completionHandler: not bound
!missing-selector! NSFileProviderManager::reimportItemsBelowItemWithIdentifier:completionHandler: not bound
!missing-selector! NSFileProviderManager::requestNSFileProviderManagerAuthorization not bound
!missing-selector! NSFileProviderManager::signalEnumeratorForContainerItemIdentifier:completionHandler: not bound
!missing-selector! NSFileProviderRequest::requestingApplicationIdentifier not bound
!missing-selector! NSFileProviderRequest::requestingExecutable not bound
!missing-selector! NSFileProviderSearchQuery::allowedContentTypes not bound
@ -73,10 +32,8 @@
!missing-selector! NSFileProviderSearchQuery::filename not bound
!missing-selector! NSFileProviderSearchQuery::scopedToItemIdentifier not bound
!missing-selector! NSFileProviderSearchQuery::searchContainerItemIdentifier not bound
!missing-type! NSFileProviderDomain not bound
!missing-type! NSFileProviderExtension not bound
!missing-type! NSFileProviderItemVersion not bound
!missing-type! NSFileProviderManager not bound
!missing-type! NSFileProviderRequest not bound
!missing-type! NSFileProviderSearchQuery not bound
## appended from unclassified file

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

@ -3,11 +3,8 @@
!missing-selector! FPUIActionExtensionContext::cancelRequestWithError: not bound
!missing-selector! FPUIActionExtensionContext::completeRequest not bound
!missing-selector! FPUIActionExtensionContext::domainIdentifier not bound
!missing-selector! FPUIActionExtensionController::extensionContext not bound
!missing-selector! FPUIActionExtensionController::performActionWithIdentifier:itemIdentifiers: not bound
!missing-selector! FPUIActionExtensionViewController::extensionContext not bound
!missing-selector! FPUIActionExtensionViewController::prepareForActionWithIdentifier:itemIdentifiers: not bound
!missing-selector! FPUIActionExtensionViewController::prepareForError: not bound
!missing-type! FPUIActionExtensionContext not bound
!missing-type! FPUIActionExtensionController not bound
!missing-type! FPUIActionExtensionViewController not bound

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

@ -26,10 +26,42 @@
!deprecated-attribute-missing! NSTask::setCurrentDirectoryPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSTask::setLaunchPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURL::parameterString missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound
!missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound
!missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound
!missing-selector! NSXPCInterface::XPCTypeForSelector:argumentIndex:ofReply: not bound
## appended from unclassified file
!deprecated-attribute-missing! NSURLCache::initWithMemoryCapacity:diskCapacity:diskPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDataTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDownloadTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskTransactionMetrics::init missing a [Deprecated] attribute
@ -45,10 +77,8 @@
!missing-field! NSHTTPCookieSameSiteLax not bound
!missing-field! NSHTTPCookieSameSitePolicy not bound
!missing-field! NSHTTPCookieSameSiteStrict not bound
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-protocol! NSURLSessionWebSocketDelegate not bound
!missing-protocol-conformance! NSOperationQueue should conform to NSProgressReporting
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! +NSDate::now not bound
!missing-selector! +NSListFormatter::localizedStringByJoiningStrings: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
@ -94,37 +124,21 @@
!missing-selector! +NSUnitInformationStorage::zettabits not bound
!missing-selector! +NSUnitInformationStorage::zettabytes not bound
!missing-selector! +NSXPCConnection::currentConnection not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSData::compressedDataUsingAlgorithm:error: not bound
!missing-selector! NSData::decompressedDataUsingAlgorithm:error: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPCookie::sameSitePolicy not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSListFormatter::itemFormatter not bound
!missing-selector! NSListFormatter::locale not bound
!missing-selector! NSListFormatter::setItemFormatter: not bound
!missing-selector! NSListFormatter::setLocale: not bound
!missing-selector! NSListFormatter::stringForObjectValue: not bound
!missing-selector! NSListFormatter::stringFromItems: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableData::compressUsingAlgorithm:error: not bound
!missing-selector! NSMutableData::decompressUsingAlgorithm:error: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSOperationQueue::progress not bound
!missing-selector! NSOrderedCollectionChange::associatedIndex not bound
!missing-selector! NSOrderedCollectionChange::changeType not bound
@ -132,7 +146,6 @@
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index: not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index:associatedIndex: not bound
!missing-selector! NSOrderedCollectionChange::object not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedCollectionDifference::hasChanges not bound
!missing-selector! NSOrderedCollectionDifference::initWithChanges: not bound
!missing-selector! NSOrderedCollectionDifference::initWithInsertIndexes:insertedObjects:removeIndexes:removedObjects: not bound
@ -140,10 +153,6 @@
!missing-selector! NSOrderedCollectionDifference::insertions not bound
!missing-selector! NSOrderedCollectionDifference::inverseDifference not bound
!missing-selector! NSOrderedCollectionDifference::removals not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-selector! NSRelativeDateTimeFormatter::calendar not bound
!missing-selector! NSRelativeDateTimeFormatter::dateTimeStyle not bound
!missing-selector! NSRelativeDateTimeFormatter::formattingContext not bound
@ -159,6 +168,8 @@
!missing-selector! NSRelativeDateTimeFormatter::stringForObjectValue: not bound
!missing-selector! NSRelativeDateTimeFormatter::unitsStyle not bound
!missing-selector! NSURLCache::initWithMemoryCapacity:diskCapacity:directoryURL: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSession::init not bound
!missing-selector! NSURLSession::webSocketTaskWithRequest: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL: not bound
@ -199,13 +210,9 @@
!missing-selector! NSURLSessionWebSocketTask::sendPingWithPongReceiveHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::setMaximumMessageSize: not bound
!missing-selector! NSXPCCoder::connection not bound
!missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound
!missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound
!missing-selector! NSXPCCoder::setUserInfo: not bound
!missing-selector! NSXPCCoder::userInfo not bound
!missing-selector! NSXPCConnection::scheduleSendBarrierBlock: not bound
!missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound
!missing-selector! NSXPCInterface::XPCTypeForSelector:argumentIndex:ofReply: not bound
!missing-type! NSListFormatter not bound
!missing-type! NSOrderedCollectionChange not bound
!missing-type! NSOrderedCollectionDifference not bound
@ -214,10 +221,3 @@
!missing-type! NSURLSessionWebSocketMessage not bound
!missing-type! NSURLSessionWebSocketTask not bound
!missing-type! NSXPCCoder not bound
## appended from unclassified file
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound

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

@ -25,9 +25,3 @@
!missing-selector! GCMotion::setRotationRate: not bound
!missing-selector! GCMotion::setStateFromMotion: not bound
!missing-selector! GCMotion::setUserAcceleration: not bound
!missing-selector! GCRay::direction not bound
!missing-selector! GCRay::initWithOrigin:direction: not bound
!missing-selector! GCRay::origin not bound
!missing-selector! GCRay::setDirection: not bound
!missing-selector! GCRay::setOrigin: not bound
!missing-type! GCRay not bound

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

@ -17,3 +17,5 @@
!missing-field! kCGImagePropertyHEICSFrameInfoArray not bound
!missing-field! kCGImagePropertyHEICSLoopCount not bound
!missing-field! kCGImagePropertyHEICSUnclampedDelayTime not bound
## appended from unclassified file
!missing-field! kCGImagePropertyIsSticker not bound

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

@ -0,0 +1,12 @@
!missing-pinvoke! JSObjectDeletePropertyForKey is not bound
!missing-pinvoke! JSObjectGetPropertyForKey is not bound
!missing-pinvoke! JSObjectHasPropertyForKey is not bound
!missing-pinvoke! JSObjectMakeDeferredPromise is not bound
!missing-pinvoke! JSObjectSetPropertyForKey is not bound
!missing-pinvoke! JSValueIsSymbol is not bound
!missing-pinvoke! JSValueMakeSymbol is not bound
!missing-selector! +JSValue::valueWithNewPromiseInContext:fromExecutor: not bound
!missing-selector! +JSValue::valueWithNewPromiseRejectedWithReason:inContext: not bound
!missing-selector! +JSValue::valueWithNewPromiseResolvedWithResult:inContext: not bound
!missing-selector! +JSValue::valueWithNewSymbolFromDescription:inContext: not bound
!missing-selector! JSValue::isSymbol not bound

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

@ -110,3 +110,6 @@
!missing-type! NENetworkRule not bound
!missing-type! NETransparentProxyManager not bound
!missing-type! NETransparentProxyNetworkSettings not bound
## appended from unclassified file
!missing-selector! NEFilterVerdict::setShouldReport: not bound
!missing-selector! NEFilterVerdict::shouldReport not bound

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

@ -1,2 +1,9 @@
!missing-protocol-member! SFSafariExtensionHandling::contentBlockerWithIdentifier:blockedResourcesWithURLs:onPage: not found
!missing-protocol-member! SFSafariExtensionHandling::page:willNavigateToURL: not found
## appended from unclassified file
!missing-selector! SFUniversalLink::applicationURL not bound
!missing-selector! SFUniversalLink::initWithWebpageURL: not bound
!missing-selector! SFUniversalLink::isEnabled not bound
!missing-selector! SFUniversalLink::setEnabled: not bound
!missing-selector! SFUniversalLink::webpageURL not bound
!missing-type! SFUniversalLink not bound

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

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

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

@ -0,0 +1,3 @@
!missing-field! VSAccountProviderAuthenticationSchemeAPI not bound
!missing-selector! VSAccountMetadataRequest::accountProviderAuthenticationToken not bound
!missing-selector! VSAccountMetadataRequest::setAccountProviderAuthenticationToken: not bound

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

@ -0,0 +1,7 @@
!missing-field! NSReadAccessURLDocumentOption not bound
!missing-selector! +NSAttributedString::loadFromHTMLWithData:options:completionHandler: not bound
!missing-selector! +NSAttributedString::loadFromHTMLWithFileURL:options:completionHandler: not bound
!missing-selector! +NSAttributedString::loadFromHTMLWithRequest:options:completionHandler: not bound
!missing-selector! +NSAttributedString::loadFromHTMLWithString:options:completionHandler: not bound
!missing-selector! WKPreferences::isFraudulentWebsiteWarningEnabled not bound
!missing-selector! WKPreferences::setFraudulentWebsiteWarningEnabled: not bound

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

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

@ -84,3 +84,6 @@
## appended from unclassified file
!missing-field! AVContentKeyRequestRequiresValidationDataInSecureTokenKey not bound
!missing-selector! AVAudioSourceNode::initWithFormat:renderBlock: not bound
## appended from unclassified file
!missing-selector! AVMutableCompositionTrack::isEnabled not bound
!missing-selector! AVMutableCompositionTrack::setEnabled: not bound

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

@ -32,3 +32,21 @@
!missing-type! NSPersistentCloudKitContainerOptions not bound
## appended from unclassified file
!missing-selector! NSPersistentStoreCoordinator::currentPersistentHistoryTokenFromStores: not bound
## appended from unclassified file
!missing-enum! NSBatchInsertRequestResultType not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:objects: not bound
!missing-selector! NSBatchInsertRequest::entity not bound
!missing-selector! NSBatchInsertRequest::entityName not bound
!missing-selector! NSBatchInsertRequest::init not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:andObjects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:objects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:andObjects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:objects: not bound
!missing-selector! NSBatchInsertRequest::objectsToInsert not bound
!missing-selector! NSBatchInsertRequest::resultType not bound
!missing-selector! NSBatchInsertRequest::setObjectsToInsert: not bound
!missing-selector! NSBatchInsertRequest::setResultType: not bound
!missing-selector! NSBatchInsertResult::result not bound
!missing-selector! NSBatchInsertResult::resultType not bound
!missing-type! NSBatchInsertRequest not bound
!missing-type! NSBatchInsertResult not bound

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

@ -350,3 +350,9 @@
!missing-selector! +CIFilter::keystoneCorrectionHorizontalFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionVerticalFilter not bound
!missing-selector! +CIFilter::perspectiveRotateFilter not bound
## appended from unclassified file
!missing-field! kCIInputEnableEDRModeKey not bound
!missing-protocol! CIFourCoordinateGeometryFilter not bound
!missing-protocol! CIRoundedRectangleGenerator not bound
!missing-selector! +CIFilter::roundedRectangleGeneratorFilter not bound
!missing-selector! CIImage::imageByApplyingTransform:highQualityDownsample: not bound

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

@ -34,7 +34,6 @@
!missing-selector! MLModelConfiguration::updateParameters not bound
!missing-selector! MLModelDescription::isUpdatable not bound
!missing-selector! MLModelDescription::trainingInputDescriptionsByName not bound
!missing-selector! MLModelDescription::updateParameterDescriptionsByKey not bound
!missing-selector! MLNumericConstraint::enumeratedNumbers not bound
!missing-selector! MLNumericConstraint::maxNumber not bound
!missing-selector! MLNumericConstraint::minNumber not bound
@ -62,3 +61,11 @@
!missing-type! MLUpdateContext not bound
!missing-type! MLUpdateProgressHandlers not bound
!missing-type! MLUpdateTask not bound
## appended from unclassified file
!missing-selector! +MLParameterKey::seed not bound
!missing-selector! +MLParameterKey::shuffle not bound
!missing-selector! MLKey::scope not bound
!missing-selector! MLModelConfiguration::parameters not bound
!missing-selector! MLModelConfiguration::setParameters: not bound
!missing-selector! MLModelDescription::parameterDescriptionsByKey not bound
!missing-selector! MLParameterKey::scopedTo: not bound

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

@ -3,3 +3,7 @@
!missing-pinvoke! CTFontManagerRegisterFontURLs is not bound
!missing-pinvoke! CTFontManagerUnregisterFontDescriptors is not bound
!missing-pinvoke! CTFontManagerUnregisterFontURLs is not bound
## appended from unclassified file
!missing-field! kCTTrackingAttributeName not bound
!missing-pinvoke! CTFontManagerCreateFontDescriptorsFromData is not bound
!missing-pinvoke! CTRunGetBaseAdvancesAndOrigins is not bound

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

@ -18,10 +18,39 @@
!deprecated-attribute-missing! NSOperationQueue::operationCount missing a [Deprecated] attribute
!deprecated-attribute-missing! NSOperationQueue::operations missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURL::parameterString missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!missing-field! NSInconsistentArchiveException not bound
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
## appended from unclassified file
!deprecated-attribute-missing! NSURLCache::initWithMemoryCapacity:diskCapacity:diskPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDataTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDownloadTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskTransactionMetrics::init missing a [Deprecated] attribute
@ -37,11 +66,8 @@
!missing-field! NSHTTPCookieSameSiteLax not bound
!missing-field! NSHTTPCookieSameSitePolicy not bound
!missing-field! NSHTTPCookieSameSiteStrict not bound
!missing-field! NSInconsistentArchiveException not bound
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-protocol! NSURLSessionWebSocketDelegate not bound
!missing-protocol-conformance! NSOperationQueue should conform to NSProgressReporting
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! +NSDate::now not bound
!missing-selector! +NSListFormatter::localizedStringByJoiningStrings: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
@ -87,37 +113,21 @@
!missing-selector! +NSUnitInformationStorage::zettabits not bound
!missing-selector! +NSUnitInformationStorage::zettabytes not bound
!missing-selector! +NSXPCConnection::currentConnection not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSData::compressedDataUsingAlgorithm:error: not bound
!missing-selector! NSData::decompressedDataUsingAlgorithm:error: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPCookie::sameSitePolicy not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSListFormatter::itemFormatter not bound
!missing-selector! NSListFormatter::locale not bound
!missing-selector! NSListFormatter::setItemFormatter: not bound
!missing-selector! NSListFormatter::setLocale: not bound
!missing-selector! NSListFormatter::stringForObjectValue: not bound
!missing-selector! NSListFormatter::stringFromItems: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableData::compressUsingAlgorithm:error: not bound
!missing-selector! NSMutableData::decompressUsingAlgorithm:error: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSOperationQueue::progress not bound
!missing-selector! NSOrderedCollectionChange::associatedIndex not bound
!missing-selector! NSOrderedCollectionChange::changeType not bound
@ -125,7 +135,6 @@
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index: not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index:associatedIndex: not bound
!missing-selector! NSOrderedCollectionChange::object not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedCollectionDifference::hasChanges not bound
!missing-selector! NSOrderedCollectionDifference::initWithChanges: not bound
!missing-selector! NSOrderedCollectionDifference::initWithInsertIndexes:insertedObjects:removeIndexes:removedObjects: not bound
@ -133,10 +142,6 @@
!missing-selector! NSOrderedCollectionDifference::insertions not bound
!missing-selector! NSOrderedCollectionDifference::inverseDifference not bound
!missing-selector! NSOrderedCollectionDifference::removals not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-selector! NSRelativeDateTimeFormatter::calendar not bound
!missing-selector! NSRelativeDateTimeFormatter::dateTimeStyle not bound
!missing-selector! NSRelativeDateTimeFormatter::formattingContext not bound
@ -152,6 +157,8 @@
!missing-selector! NSRelativeDateTimeFormatter::stringForObjectValue: not bound
!missing-selector! NSRelativeDateTimeFormatter::unitsStyle not bound
!missing-selector! NSURLCache::initWithMemoryCapacity:diskCapacity:directoryURL: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSession::init not bound
!missing-selector! NSURLSession::webSocketTaskWithRequest: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL: not bound
@ -203,10 +210,3 @@
!missing-type! NSURLSessionWebSocketMessage not bound
!missing-type! NSURLSessionWebSocketTask not bound
!missing-type! NSXPCCoder not bound
## appended from unclassified file
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound

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

@ -25,9 +25,3 @@
!missing-selector! GCMotion::setRotationRate: not bound
!missing-selector! GCMotion::setStateFromMotion: not bound
!missing-selector! GCMotion::setUserAcceleration: not bound
!missing-selector! GCRay::direction not bound
!missing-selector! GCRay::initWithOrigin:direction: not bound
!missing-selector! GCRay::origin not bound
!missing-selector! GCRay::setDirection: not bound
!missing-selector! GCRay::setOrigin: not bound
!missing-type! GCRay not bound

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

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

@ -1,18 +1,7 @@
!deprecated-attribute-missing! GKPlayer::playerID missing a [Deprecated] attribute
!missing-enum! GKTournamentErrorCode not bound
!missing-field! GKRemoteUIApplyThemeKey not bound
!missing-field! GKRemoteUIAuthCancelURL not bound
!missing-field! GKRemoteUIAuthErrorMessage not bound
!missing-field! GKRemoteUIAuthOKURL not bound
!missing-field! GKRemoteUIAuthPassword not bound
!missing-field! GKRemoteUIAuthTitle not bound
!missing-field! GKRemoteUIAuthUserName not bound
!missing-field! GKRemoteUIErrorDomain not bound
!missing-field! GKRemoteUILayoutStyleKey not bound
!missing-field! GKTournamentErrorDomain not bound
!missing-protocol! GKRemoteUIAuxiliaryViewDelegate not bound
!missing-selector! +GKLocalPlayer::local not bound
!missing-selector! +GKRemoteUIController::remoteUIController not bound
!missing-selector! GKLocalPlayer::isMultiplayerGamingRestricted not bound
!missing-selector! GKLocalPlayer::loadChallengableFriendsWithCompletionHandler: not bound
!missing-selector! GKMatchRequest::restrictToAutomatch not bound
@ -21,14 +10,6 @@
!missing-selector! GKMatchRequest::tournamentForInvitePool not bound
!missing-selector! GKPlayer::gamePlayerID not bound
!missing-selector! GKPlayer::teamPlayerID not bound
!missing-selector! GKRemoteUIController::completionHandler not bound
!missing-selector! GKRemoteUIController::error not bound
!missing-selector! GKRemoteUIController::loading not bound
!missing-selector! GKRemoteUIController::presentInParentNavigationController:animated: not bound
!missing-selector! GKRemoteUIController::setCompletionHandler: not bound
!missing-selector! GKRemoteUIController::setShouldApplyGameCenterTheme: not bound
!missing-selector! GKRemoteUIController::shouldApplyGameCenterTheme not bound
!missing-type! GKRemoteUIController not bound
!unknown-native-enum! GKPeerPickerConnectionType bound
## appended from unclassified file
!missing-selector! GKPlayer::scopedIDsArePersistent not bound

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

@ -1 +1,10 @@
## appended from unclassified file
!missing-enum! HMHomeManagerAuthorizationStatus not bound
!missing-protocol! HMNetworkConfigurationProfileDelegate not bound
!missing-protocol-member! HMHomeManagerDelegate::homeManager:didUpdateAuthorizationStatus: not found
!missing-selector! HMHomeManager::authorizationStatus not bound
!missing-selector! HMNetworkConfigurationProfile::delegate not bound
!missing-selector! HMNetworkConfigurationProfile::isNetworkAccessRestricted not bound
!missing-selector! HMNetworkConfigurationProfile::setDelegate: not bound
!missing-type! HMNetworkConfigurationProfile not bound

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

@ -0,0 +1,12 @@
!missing-pinvoke! JSObjectDeletePropertyForKey is not bound
!missing-pinvoke! JSObjectGetPropertyForKey is not bound
!missing-pinvoke! JSObjectHasPropertyForKey is not bound
!missing-pinvoke! JSObjectMakeDeferredPromise is not bound
!missing-pinvoke! JSObjectSetPropertyForKey is not bound
!missing-pinvoke! JSValueIsSymbol is not bound
!missing-pinvoke! JSValueMakeSymbol is not bound
!missing-selector! +JSValue::valueWithNewPromiseInContext:fromExecutor: not bound
!missing-selector! +JSValue::valueWithNewPromiseRejectedWithReason:inContext: not bound
!missing-selector! +JSValue::valueWithNewPromiseResolvedWithResult:inContext: not bound
!missing-selector! +JSValue::valueWithNewSymbolFromDescription:inContext: not bound
!missing-selector! JSValue::isSymbol not bound

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

@ -64,10 +64,6 @@
!missing-selector! MTLIndirectCommandBufferDescriptor::maxKernelBufferBindCount not bound
!missing-selector! MTLIndirectCommandBufferDescriptor::setInheritPipelineState: not bound
!missing-selector! MTLIndirectCommandBufferDescriptor::setMaxKernelBufferBindCount: not bound
!missing-selector! MTLRenderPassDescriptor::renderTargetArrayLength not bound
!missing-selector! MTLRenderPassDescriptor::setRenderTargetArrayLength: not bound
!missing-selector! MTLRenderPipelineDescriptor::inputPrimitiveTopology not bound
!missing-selector! MTLRenderPipelineDescriptor::setInputPrimitiveTopology: not bound
!missing-selector! MTLSharedTextureHandle::device not bound
!missing-selector! MTLSharedTextureHandle::label not bound
!missing-selector! MTLTextureDescriptor::hazardTrackingMode not bound

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

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

@ -6,7 +6,6 @@
!deprecated-attribute-missing! UICollectionViewDelegate::collectionView:performAction:forItemAtIndexPath:withSender: missing a [Deprecated] attribute
!deprecated-attribute-missing! UICollectionViewDelegate::collectionView:shouldShowMenuForItemAtIndexPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! UIKeyCommand::keyCommandWithInput:modifierFlags:action:discoverabilityTitle: missing a [Deprecated] attribute
!deprecated-attribute-missing! UIKeyCommand::setDiscoverabilityTitle: missing a [Deprecated] attribute
!deprecated-attribute-missing! UIPopoverBackgroundView::wantsDefaultContentAppearance missing a [Deprecated] attribute
!deprecated-attribute-missing! UIPreviewAction missing a [Deprecated] attribute
!deprecated-attribute-missing! UIPreviewActionGroup missing a [Deprecated] attribute
@ -323,9 +322,6 @@
!missing-selector! UIBarAppearance::setBackgroundImageContentMode: not bound
!missing-selector! UIBarAppearance::setShadowColor: not bound
!missing-selector! UIBarAppearance::setShadowImage: not bound
!missing-selector! UIBarAppearance::setupDefaultBackground not bound
!missing-selector! UIBarAppearance::setupOpaqueBackground not bound
!missing-selector! UIBarAppearance::setupTransparentBackground not bound
!missing-selector! UIBarAppearance::shadowColor not bound
!missing-selector! UIBarAppearance::shadowImage not bound
!missing-selector! UIBarButtonItemAppearance::configureWithDefaultForStyle: not bound
@ -333,11 +329,9 @@
!missing-selector! UIBarButtonItemAppearance::focused not bound
!missing-selector! UIBarButtonItemAppearance::highlighted not bound
!missing-selector! UIBarButtonItemAppearance::init not bound
!missing-selector! UIBarButtonItemAppearance::initWithBarButtonItemStyle: not bound
!missing-selector! UIBarButtonItemAppearance::initWithCoder: not bound
!missing-selector! UIBarButtonItemAppearance::initWithStyle: not bound
!missing-selector! UIBarButtonItemAppearance::normal not bound
!missing-selector! UIBarButtonItemAppearance::setupDefaultAppearanceForStyle: not bound
!missing-selector! UIBarButtonItemStateAppearance::backgroundImage not bound
!missing-selector! UIBarButtonItemStateAppearance::backgroundImagePositionAdjustment not bound
!missing-selector! UIBarButtonItemStateAppearance::setBackgroundImage: not bound
@ -403,26 +397,6 @@
!missing-selector! UIImageView::preferredSymbolConfiguration not bound
!missing-selector! UIImageView::setPreferredSymbolConfiguration: not bound
!missing-selector! UIKeyCommand::action not bound
!missing-selector! UIMutableCommand::discoverabilityTitle not bound
!missing-selector! UIMutableCommand::image not bound
!missing-selector! UIMutableCommand::isEnabled not bound
!missing-selector! UIMutableCommand::setDiscoverabilityTitle: not bound
!missing-selector! UIMutableCommand::setEnabled: not bound
!missing-selector! UIMutableCommand::setImage: not bound
!missing-selector! UIMutableCommand::setState: not bound
!missing-selector! UIMutableCommand::setTitle: not bound
!missing-selector! UIMutableCommand::state not bound
!missing-selector! UIMutableCommand::title not bound
!missing-selector! UIMutableKeyCommand::discoverabilityTitle not bound
!missing-selector! UIMutableKeyCommand::image not bound
!missing-selector! UIMutableKeyCommand::isEnabled not bound
!missing-selector! UIMutableKeyCommand::setDiscoverabilityTitle: not bound
!missing-selector! UIMutableKeyCommand::setEnabled: not bound
!missing-selector! UIMutableKeyCommand::setImage: not bound
!missing-selector! UIMutableKeyCommand::setState: not bound
!missing-selector! UIMutableKeyCommand::setTitle: not bound
!missing-selector! UIMutableKeyCommand::state not bound
!missing-selector! UIMutableKeyCommand::title not bound
!missing-selector! UINavigationBar::compactAppearance not bound
!missing-selector! UINavigationBar::scrollEdgeAppearance not bound
!missing-selector! UINavigationBar::setCompactAppearance: not bound
@ -435,13 +409,11 @@
!missing-selector! UINavigationBarAppearance::buttonAppearance not bound
!missing-selector! UINavigationBarAppearance::doneButtonAppearance not bound
!missing-selector! UINavigationBarAppearance::largeTitleTextAttributes not bound
!missing-selector! UINavigationBarAppearance::plainButtonAppearance not bound
!missing-selector! UINavigationBarAppearance::setBackButtonAppearance: not bound
!missing-selector! UINavigationBarAppearance::setBackIndicatorImage:transitionMaskImage: not bound
!missing-selector! UINavigationBarAppearance::setButtonAppearance: not bound
!missing-selector! UINavigationBarAppearance::setDoneButtonAppearance: not bound
!missing-selector! UINavigationBarAppearance::setLargeTitleTextAttributes: not bound
!missing-selector! UINavigationBarAppearance::setPlainButtonAppearance: not bound
!missing-selector! UINavigationBarAppearance::setTitlePositionAdjustment: not bound
!missing-selector! UINavigationBarAppearance::setTitleTextAttributes: not bound
!missing-selector! UINavigationBarAppearance::titlePositionAdjustment not bound
@ -499,10 +471,8 @@
!missing-selector! UITabBarItemAppearance::init not bound
!missing-selector! UITabBarItemAppearance::initWithCoder: not bound
!missing-selector! UITabBarItemAppearance::initWithStyle: not bound
!missing-selector! UITabBarItemAppearance::initWithTabBarItemLayout: not bound
!missing-selector! UITabBarItemAppearance::normal not bound
!missing-selector! UITabBarItemAppearance::selected not bound
!missing-selector! UITabBarItemAppearance::setupDefaultAppearanceForStyle: not bound
!missing-selector! UITabBarItemStateAppearance::badgeBackgroundColor not bound
!missing-selector! UITabBarItemStateAppearance::badgePositionAdjustment not bound
!missing-selector! UITabBarItemStateAppearance::badgeTextAttributes not bound
@ -533,10 +503,8 @@
!missing-selector! UITextView::usesStandardTextScaling not bound
!missing-selector! UIToolbarAppearance::buttonAppearance not bound
!missing-selector! UIToolbarAppearance::doneButtonAppearance not bound
!missing-selector! UIToolbarAppearance::plainButtonAppearance not bound
!missing-selector! UIToolbarAppearance::setButtonAppearance: not bound
!missing-selector! UIToolbarAppearance::setDoneButtonAppearance: not bound
!missing-selector! UIToolbarAppearance::setPlainButtonAppearance: not bound
!missing-selector! UITraitCollection::accessibilityContrast not bound
!missing-selector! UITraitCollection::hasDifferentColorAppearanceComparedToTraitCollection: not bound
!missing-selector! UITraitCollection::imageConfiguration not bound
@ -585,7 +553,6 @@
!missing-type! UICommandGroup not bound
!missing-type! UICommandSystem not bound
!missing-type! UICommandValidation not bound
!missing-type! UIMutableCommand not bound
!missing-type! UIMutableKeyCommand not bound
!missing-type! UINavigationBarAppearance not bound
!missing-type! UIScreenshotService not bound
@ -612,3 +579,55 @@
!missing-selector! UIResponder::buildMenuWithBuilder: not bound
!missing-selector! UIResponder::editingInteractionConfiguration not bound
!missing-type! UIMenuSystem not bound
## appended from unclassified file
!deprecated-attribute-missing! UIApplication::beginIgnoringInteractionEvents missing a [Deprecated] attribute
!deprecated-attribute-missing! UIApplication::endIgnoringInteractionEvents missing a [Deprecated] attribute
!deprecated-attribute-missing! UIApplication::isIgnoringInteractionEvents missing a [Deprecated] attribute
!deprecated-attribute-missing! UIApplication::keyWindow missing a [Deprecated] attribute
!deprecated-attribute-missing! UIWindow::setScreen: missing a [Deprecated] attribute
!missing-enum! UIMenuElementAttributes not bound
!missing-enum! UIMenuElementState not bound
!missing-field! UIAccessibilitySpeechAttributeSpellOut not bound
!missing-protocol-conformance! NSLayoutAnchor should conform to NSCoding
!missing-protocol-conformance! NSLayoutAnchor should conform to NSCopying
!missing-protocol-conformance! UIKeyCommand should conform to NSMutableCopying
!missing-selector! +UIAction::actionWithTitle:image:identifier:handler: not bound
!missing-selector! +UICommand::commandWithTitle:image:action:propertyList: not bound
!missing-selector! +UICommand::commandWithTitle:image:action:propertyList:alternates: not bound
!missing-selector! +UIKeyCommand::commandWithTitle:image:action:input:modifierFlags:propertyList: not bound
!missing-selector! +UIKeyCommand::commandWithTitle:image:action:input:modifierFlags:propertyList:alternates: not bound
!missing-selector! UIAction::attributes not bound
!missing-selector! UIAction::discoverabilityTitle not bound
!missing-selector! UIAction::identifier not bound
!missing-selector! UIAction::image not bound
!missing-selector! UIAction::setAttributes: not bound
!missing-selector! UIAction::setDiscoverabilityTitle: not bound
!missing-selector! UIAction::setImage: not bound
!missing-selector! UIAction::setState: not bound
!missing-selector! UIAction::setTitle: not bound
!missing-selector! UIAction::state not bound
!missing-selector! UIAction::title not bound
!missing-selector! UICommand::attributes not bound
!missing-selector! UICommand::image not bound
!missing-selector! UICommand::setAttributes: not bound
!missing-selector! UICommand::setDiscoverabilityTitle: not bound
!missing-selector! UICommand::setEnabled: not bound
!missing-selector! UICommand::setImage: not bound
!missing-selector! UICommand::setState: not bound
!missing-selector! UICommand::setTitle: not bound
!missing-selector! UICommand::title not bound
!missing-selector! UIKeyCommand::alternates not bound
!missing-selector! UIKeyCommand::attributes not bound
!missing-selector! UIKeyCommand::image not bound
!missing-selector! UIKeyCommand::mutableCopy not bound
!missing-selector! UIKeyCommand::propertyList not bound
!missing-selector! UIKeyCommand::setAttributes: not bound
!missing-selector! UIKeyCommand::setImage: not bound
!missing-selector! UIKeyCommand::setState: not bound
!missing-selector! UIKeyCommand::setTitle: not bound
!missing-selector! UIKeyCommand::state not bound
!missing-selector! UIKeyCommand::title not bound
!missing-selector! UISegmentedControl::selectedSegmentTintColor not bound
!missing-selector! UISegmentedControl::setSelectedSegmentTintColor: not bound
!unknown-native-enum! UIActionOptions bound
!unknown-native-enum! UICommandState bound

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

@ -0,0 +1,3 @@
!missing-field! VSAccountProviderAuthenticationSchemeAPI not bound
!missing-selector! VSAccountMetadataRequest::accountProviderAuthenticationToken not bound
!missing-selector! VSAccountMetadataRequest::setAccountProviderAuthenticationToken: not bound

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

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

@ -1201,3 +1201,135 @@
## appended from unclassified file
!missing-field! AVContentKeyRequestRequiresValidationDataInSecureTokenKey not bound
!missing-selector! AVAudioSourceNode::initWithFormat:renderBlock: not bound
## appended from unclassified file
!missing-enum! AVMovieWritingOptions not bound
!missing-field! AVFragmentedMovieContainsMovieFragmentsDidChangeNotification not bound
!missing-field! AVFragmentedMovieDurationDidChangeNotification not bound
!missing-field! AVFragmentedMovieTrackSegmentsDidChangeNotification not bound
!missing-field! AVFragmentedMovieTrackTimeRangeDidChangeNotification not bound
!missing-field! AVFragmentedMovieWasDefragmentedNotification not bound
!missing-field! AVMovieReferenceRestrictionsKey not bound
!missing-selector! +AVFragmentedMovieMinder::fragmentedMovieMinderWithMovie:mindingInterval: not bound
!missing-selector! +AVMovie::movieTypes not bound
!missing-selector! +AVMovie::movieWithData:options: not bound
!missing-selector! +AVMovie::movieWithURL:options: not bound
!missing-selector! +AVMutableMovie::movieWithData:options:error: not bound
!missing-selector! +AVMutableMovie::movieWithSettingsFromMovie:options:error: not bound
!missing-selector! +AVMutableMovie::movieWithURL:options:error: not bound
!missing-selector! AVFragmentedMovie::tracks not bound
!missing-selector! AVFragmentedMovie::tracksWithMediaCharacteristic: not bound
!missing-selector! AVFragmentedMovie::tracksWithMediaType: not bound
!missing-selector! AVFragmentedMovie::trackWithTrackID: not bound
!missing-selector! AVFragmentedMovieMinder::addFragmentedMovie: not bound
!missing-selector! AVFragmentedMovieMinder::initWithMovie:mindingInterval: not bound
!missing-selector! AVFragmentedMovieMinder::mindingInterval not bound
!missing-selector! AVFragmentedMovieMinder::movies not bound
!missing-selector! AVFragmentedMovieMinder::removeFragmentedMovie: not bound
!missing-selector! AVFragmentedMovieMinder::setMindingInterval: not bound
!missing-selector! AVMediaDataStorage::initWithURL:options: not bound
!missing-selector! AVMediaDataStorage::URL not bound
!missing-selector! AVMovie::canContainMovieFragments not bound
!missing-selector! AVMovie::containsMovieFragments not bound
!missing-selector! AVMovie::data not bound
!missing-selector! AVMovie::defaultMediaDataStorage not bound
!missing-selector! AVMovie::initWithData:options: not bound
!missing-selector! AVMovie::initWithURL:options: not bound
!missing-selector! AVMovie::isCompatibleWithFileType: not bound
!missing-selector! AVMovie::movieHeaderWithFileType:error: not bound
!missing-selector! AVMovie::tracks not bound
!missing-selector! AVMovie::tracksWithMediaCharacteristic: not bound
!missing-selector! AVMovie::tracksWithMediaType: not bound
!missing-selector! AVMovie::trackWithTrackID: not bound
!missing-selector! AVMovie::URL not bound
!missing-selector! AVMovie::writeMovieHeaderToURL:fileType:options:error: not bound
!missing-selector! AVMovieTrack::alternateGroupID not bound
!missing-selector! AVMovieTrack::mediaDataStorage not bound
!missing-selector! AVMovieTrack::mediaDecodeTimeRange not bound
!missing-selector! AVMovieTrack::mediaPresentationTimeRange not bound
!missing-selector! AVMutableMovie::addMutableTracksCopyingSettingsFromTracks:options: not bound
!missing-selector! AVMutableMovie::addMutableTrackWithMediaType:copySettingsFromTrack:options: not bound
!missing-selector! AVMutableMovie::defaultMediaDataStorage not bound
!missing-selector! AVMutableMovie::initWithData:options:error: not bound
!missing-selector! AVMutableMovie::initWithSettingsFromMovie:options:error: not bound
!missing-selector! AVMutableMovie::initWithURL:options:error: not bound
!missing-selector! AVMutableMovie::insertEmptyTimeRange: not bound
!missing-selector! AVMutableMovie::insertTimeRange:ofAsset:atTime:copySampleData:error: not bound
!missing-selector! AVMutableMovie::interleavingPeriod not bound
!missing-selector! AVMutableMovie::isModified not bound
!missing-selector! AVMutableMovie::metadata not bound
!missing-selector! AVMutableMovie::mutableTrackCompatibleWithTrack: not bound
!missing-selector! AVMutableMovie::preferredRate not bound
!missing-selector! AVMutableMovie::preferredTransform not bound
!missing-selector! AVMutableMovie::preferredVolume not bound
!missing-selector! AVMutableMovie::removeTimeRange: not bound
!missing-selector! AVMutableMovie::removeTrack: not bound
!missing-selector! AVMutableMovie::scaleTimeRange:toDuration: not bound
!missing-selector! AVMutableMovie::setDefaultMediaDataStorage: not bound
!missing-selector! AVMutableMovie::setInterleavingPeriod: not bound
!missing-selector! AVMutableMovie::setMetadata: not bound
!missing-selector! AVMutableMovie::setModified: not bound
!missing-selector! AVMutableMovie::setPreferredRate: not bound
!missing-selector! AVMutableMovie::setPreferredTransform: not bound
!missing-selector! AVMutableMovie::setPreferredVolume: not bound
!missing-selector! AVMutableMovie::setTimescale: not bound
!missing-selector! AVMutableMovie::timescale not bound
!missing-selector! AVMutableMovie::tracks not bound
!missing-selector! AVMutableMovie::tracksWithMediaCharacteristic: not bound
!missing-selector! AVMutableMovie::tracksWithMediaType: not bound
!missing-selector! AVMutableMovie::trackWithTrackID: not bound
!missing-selector! AVMutableMovieTrack::addTrackAssociationToTrack:type: not bound
!missing-selector! AVMutableMovieTrack::alternateGroupID not bound
!missing-selector! AVMutableMovieTrack::appendSampleBuffer:decodeTime:presentationTime:error: not bound
!missing-selector! AVMutableMovieTrack::cleanApertureDimensions not bound
!missing-selector! AVMutableMovieTrack::encodedPixelsDimensions not bound
!missing-selector! AVMutableMovieTrack::extendedLanguageTag not bound
!missing-selector! AVMutableMovieTrack::hasProtectedContent not bound
!missing-selector! AVMutableMovieTrack::insertEmptyTimeRange: not bound
!missing-selector! AVMutableMovieTrack::insertMediaTimeRange:intoTimeRange: not bound
!missing-selector! AVMutableMovieTrack::insertTimeRange:ofTrack:atTime:copySampleData:error: not bound
!missing-selector! AVMutableMovieTrack::isEnabled not bound
!missing-selector! AVMutableMovieTrack::isModified not bound
!missing-selector! AVMutableMovieTrack::languageCode not bound
!missing-selector! AVMutableMovieTrack::layer not bound
!missing-selector! AVMutableMovieTrack::mediaDataStorage not bound
!missing-selector! AVMutableMovieTrack::metadata not bound
!missing-selector! AVMutableMovieTrack::naturalSize not bound
!missing-selector! AVMutableMovieTrack::preferredMediaChunkAlignment not bound
!missing-selector! AVMutableMovieTrack::preferredMediaChunkDuration not bound
!missing-selector! AVMutableMovieTrack::preferredMediaChunkSize not bound
!missing-selector! AVMutableMovieTrack::preferredTransform not bound
!missing-selector! AVMutableMovieTrack::preferredVolume not bound
!missing-selector! AVMutableMovieTrack::productionApertureDimensions not bound
!missing-selector! AVMutableMovieTrack::removeTimeRange: not bound
!missing-selector! AVMutableMovieTrack::removeTrackAssociationToTrack:type: not bound
!missing-selector! AVMutableMovieTrack::replaceFormatDescription:withFormatDescription: not bound
!missing-selector! AVMutableMovieTrack::sampleReferenceBaseURL not bound
!missing-selector! AVMutableMovieTrack::scaleTimeRange:toDuration: not bound
!missing-selector! AVMutableMovieTrack::setAlternateGroupID: not bound
!missing-selector! AVMutableMovieTrack::setCleanApertureDimensions: not bound
!missing-selector! AVMutableMovieTrack::setEnabled: not bound
!missing-selector! AVMutableMovieTrack::setEncodedPixelsDimensions: not bound
!missing-selector! AVMutableMovieTrack::setExtendedLanguageTag: not bound
!missing-selector! AVMutableMovieTrack::setLanguageCode: not bound
!missing-selector! AVMutableMovieTrack::setLayer: not bound
!missing-selector! AVMutableMovieTrack::setMediaDataStorage: not bound
!missing-selector! AVMutableMovieTrack::setMetadata: not bound
!missing-selector! AVMutableMovieTrack::setModified: not bound
!missing-selector! AVMutableMovieTrack::setNaturalSize: not bound
!missing-selector! AVMutableMovieTrack::setPreferredMediaChunkAlignment: not bound
!missing-selector! AVMutableMovieTrack::setPreferredMediaChunkDuration: not bound
!missing-selector! AVMutableMovieTrack::setPreferredMediaChunkSize: not bound
!missing-selector! AVMutableMovieTrack::setPreferredTransform: not bound
!missing-selector! AVMutableMovieTrack::setPreferredVolume: not bound
!missing-selector! AVMutableMovieTrack::setProductionApertureDimensions: not bound
!missing-selector! AVMutableMovieTrack::setSampleReferenceBaseURL: not bound
!missing-selector! AVMutableMovieTrack::setTimescale: not bound
!missing-selector! AVMutableMovieTrack::timescale not bound
!missing-type! AVFragmentedMovie not bound
!missing-type! AVFragmentedMovieMinder not bound
!missing-type! AVFragmentedMovieTrack not bound
!missing-type! AVMediaDataStorage not bound
!missing-type! AVMovie not bound
!missing-type! AVMovieTrack not bound
!missing-type! AVMutableMovie not bound
!missing-type! AVMutableMovieTrack not bound

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

@ -0,0 +1,2 @@
!missing-selector! CLKTextProvider::accessibilityLabel not bound
!missing-selector! CLKTextProvider::setAccessibilityLabel: not bound

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

@ -32,3 +32,21 @@
!missing-type! NSPersistentCloudKitContainerOptions not bound
## appended from unclassified file
!missing-selector! NSPersistentStoreCoordinator::currentPersistentHistoryTokenFromStores: not bound
## appended from unclassified file
!missing-enum! NSBatchInsertRequestResultType not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:objects: not bound
!missing-selector! NSBatchInsertRequest::entity not bound
!missing-selector! NSBatchInsertRequest::entityName not bound
!missing-selector! NSBatchInsertRequest::init not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:andObjects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntity:objects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:andObjects: not bound
!missing-selector! NSBatchInsertRequest::initWithEntityName:objects: not bound
!missing-selector! NSBatchInsertRequest::objectsToInsert not bound
!missing-selector! NSBatchInsertRequest::resultType not bound
!missing-selector! NSBatchInsertRequest::setObjectsToInsert: not bound
!missing-selector! NSBatchInsertRequest::setResultType: not bound
!missing-selector! NSBatchInsertResult::result not bound
!missing-selector! NSBatchInsertResult::resultType not bound
!missing-type! NSBatchInsertRequest not bound
!missing-type! NSBatchInsertResult not bound

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

@ -34,7 +34,6 @@
!missing-selector! MLModelConfiguration::updateParameters not bound
!missing-selector! MLModelDescription::isUpdatable not bound
!missing-selector! MLModelDescription::trainingInputDescriptionsByName not bound
!missing-selector! MLModelDescription::updateParameterDescriptionsByKey not bound
!missing-selector! MLNumericConstraint::enumeratedNumbers not bound
!missing-selector! MLNumericConstraint::maxNumber not bound
!missing-selector! MLNumericConstraint::minNumber not bound
@ -62,3 +61,11 @@
!missing-type! MLUpdateContext not bound
!missing-type! MLUpdateProgressHandlers not bound
!missing-type! MLUpdateTask not bound
## appended from unclassified file
!missing-selector! +MLParameterKey::seed not bound
!missing-selector! +MLParameterKey::shuffle not bound
!missing-selector! MLKey::scope not bound
!missing-selector! MLModelConfiguration::parameters not bound
!missing-selector! MLModelConfiguration::setParameters: not bound
!missing-selector! MLModelDescription::parameterDescriptionsByKey not bound
!missing-selector! MLParameterKey::scopedTo: not bound

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

@ -3,3 +3,7 @@
!missing-pinvoke! CTFontManagerRegisterFontURLs is not bound
!missing-pinvoke! CTFontManagerUnregisterFontDescriptors is not bound
!missing-pinvoke! CTFontManagerUnregisterFontURLs is not bound
## appended from unclassified file
!missing-field! kCTTrackingAttributeName not bound
!missing-pinvoke! CTFontManagerCreateFontDescriptorsFromData is not bound
!missing-pinvoke! CTRunGetBaseAdvancesAndOrigins is not bound

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

@ -18,10 +18,40 @@
!deprecated-attribute-missing! NSOperationQueue::operationCount missing a [Deprecated] attribute
!deprecated-attribute-missing! NSOperationQueue::operations missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURL::parameterString missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!missing-field! NSInconsistentArchiveException not bound
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-selector! NSURLSession::streamTaskWithHostName:port: not bound
## appended from unclassified file
!deprecated-attribute-missing! NSURLCache::initWithMemoryCapacity:diskCapacity:diskPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDataTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDownloadTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskTransactionMetrics::init missing a [Deprecated] attribute
@ -37,11 +67,8 @@
!missing-field! NSHTTPCookieSameSiteLax not bound
!missing-field! NSHTTPCookieSameSitePolicy not bound
!missing-field! NSHTTPCookieSameSiteStrict not bound
!missing-field! NSInconsistentArchiveException not bound
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-protocol! NSURLSessionWebSocketDelegate not bound
!missing-protocol-conformance! NSOperationQueue should conform to NSProgressReporting
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! +NSDate::now not bound
!missing-selector! +NSListFormatter::localizedStringByJoiningStrings: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
@ -87,37 +114,21 @@
!missing-selector! +NSUnitInformationStorage::zettabits not bound
!missing-selector! +NSUnitInformationStorage::zettabytes not bound
!missing-selector! +NSXPCConnection::currentConnection not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSData::compressedDataUsingAlgorithm:error: not bound
!missing-selector! NSData::decompressedDataUsingAlgorithm:error: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPCookie::sameSitePolicy not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSListFormatter::itemFormatter not bound
!missing-selector! NSListFormatter::locale not bound
!missing-selector! NSListFormatter::setItemFormatter: not bound
!missing-selector! NSListFormatter::setLocale: not bound
!missing-selector! NSListFormatter::stringForObjectValue: not bound
!missing-selector! NSListFormatter::stringFromItems: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableData::compressUsingAlgorithm:error: not bound
!missing-selector! NSMutableData::decompressUsingAlgorithm:error: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSOperationQueue::progress not bound
!missing-selector! NSOrderedCollectionChange::associatedIndex not bound
!missing-selector! NSOrderedCollectionChange::changeType not bound
@ -125,7 +136,6 @@
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index: not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index:associatedIndex: not bound
!missing-selector! NSOrderedCollectionChange::object not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedCollectionDifference::hasChanges not bound
!missing-selector! NSOrderedCollectionDifference::initWithChanges: not bound
!missing-selector! NSOrderedCollectionDifference::initWithInsertIndexes:insertedObjects:removeIndexes:removedObjects: not bound
@ -133,10 +143,6 @@
!missing-selector! NSOrderedCollectionDifference::insertions not bound
!missing-selector! NSOrderedCollectionDifference::inverseDifference not bound
!missing-selector! NSOrderedCollectionDifference::removals not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-selector! NSRelativeDateTimeFormatter::calendar not bound
!missing-selector! NSRelativeDateTimeFormatter::dateTimeStyle not bound
!missing-selector! NSRelativeDateTimeFormatter::formattingContext not bound
@ -152,8 +158,9 @@
!missing-selector! NSRelativeDateTimeFormatter::stringForObjectValue: not bound
!missing-selector! NSRelativeDateTimeFormatter::unitsStyle not bound
!missing-selector! NSURLCache::initWithMemoryCapacity:diskCapacity:directoryURL: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSession::init not bound
!missing-selector! NSURLSession::streamTaskWithHostName:port: not bound
!missing-selector! NSURLSession::webSocketTaskWithRequest: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL:protocols: not bound
@ -204,10 +211,3 @@
!missing-type! NSURLSessionWebSocketMessage not bound
!missing-type! NSURLSessionWebSocketTask not bound
!missing-type! NSXPCCoder not bound
## appended from unclassified file
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound

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

@ -0,0 +1,9 @@
## appended from unclassified file
!missing-enum! HMHomeManagerAuthorizationStatus not bound
!missing-protocol! HMNetworkConfigurationProfileDelegate not bound
!missing-protocol-member! HMHomeManagerDelegate::homeManager:didUpdateAuthorizationStatus: not found
!missing-selector! HMHomeManager::authorizationStatus not bound
!missing-selector! HMNetworkConfigurationProfile::delegate not bound
!missing-selector! HMNetworkConfigurationProfile::isNetworkAccessRestricted not bound
!missing-selector! HMNetworkConfigurationProfile::setDelegate: not bound
!missing-type! HMNetworkConfigurationProfile not bound

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

@ -284,7 +284,6 @@
!missing-selector! INStartCallIntent::callCapability not bound
!missing-selector! INStartCallIntent::contacts not bound
!missing-selector! INStartCallIntent::destinationType not bound
!missing-selector! INStartCallIntent::initWithAudioRoute:destinationType:contacts:callCapability: not bound
!missing-selector! INStartCallIntentResponse::code not bound
!missing-selector! INStartCallIntentResponse::initWithCode:userActivity: not bound
!missing-selector! INTask::initWithTitle:status:taskType:spatialEventTrigger:temporalEventTrigger:createdDateComponents:modifiedDateComponents:identifier:priority: not bound
@ -400,3 +399,6 @@
!missing-selector! INSetTaskAttributeTemporalEventTriggerResolutionResult::initWithTemporalEventTriggerResolutionResult: not bound
!missing-type! INAddTasksTemporalEventTriggerResolutionResult not bound
!missing-type! INSetTaskAttributeTemporalEventTriggerResolutionResult not bound
## appended from unclassified file
!missing-selector! INStartCallIntent::initWithAudioRoute:destinationType:contacts:recordTypeForRedialing:callCapability: not bound
!missing-selector! INStartCallIntent::recordTypeForRedialing not bound

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

@ -24,3 +24,5 @@
!missing-selector! NSDataAsset::typeIdentifier not bound
!missing-type! NSDataAsset not bound
## appended from unclassified file
## appended from unclassified file
!missing-field! UIAccessibilitySpeechAttributeSpellOut not bound

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

@ -75,3 +75,5 @@
!missing-type! WKExtendedRuntimeSession not bound
!missing-type! WKInterfaceAuthorizationAppleIDButton not bound
!missing-type! WKInterfaceTextField not bound
## appended from unclassified file
!missing-selector! WKExtendedRuntimeSession::notifyUserWithHaptic:repeatHandler: not bound

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

@ -185,7 +185,6 @@ public class Frameworks : Dictionary <string, Framework>
{ "DeviceCheck", "DeviceCheck", 10,15 },
{ "PushKit", "PushKit", 10,15 },
{ "SoundAnalysis", "SoundAnalysis", 10,15 },
{ "IncomingCallNotifications", "IncomingCallNotifications", 10,15 },
{ "PencilKit", "PencilKit", 10,15 },
{ "Speech", "Speech", 10,15 },
};
@ -314,7 +313,6 @@ public class Frameworks : Dictionary <string, Framework>
{ "Network", "Network", 12, 0 },
{ "SoundAnalysis", "SoundAnalysis", 13, 0 },
{ "IncomingCallNotifications", "IncomingCallNotifications", 13, 0 },
{ "BackgroundTasks", "BackgroundTasks", 13, 0 },
{ "PencilKit", "PencilKit", 13, 0 },
};