* Bump for Xcode 11 beta 4

xtro tests will fail until we have an update for sharpie, however
the introspection tests should be fine (with the small changes in
arkit.cs and uikit.cs)

xtro failure:

```
System.NotImplementedException: AVAudioInteger
  at (wrapper managed-to-native) Clang.Ast.AstReader.LoadInternal(Clang.Ast.AstReader,string)
  at Clang.Ast.AstReader.Load (System.String astPath) [0x00014] in /Users/builder/vsts-agent/_work/5/s/Clang/Ast/AstReader.cs:33
  at Extrospection.Runner.Execute (System.String pchFile, System.Collections.Generic.IEnumerable`1[T] assemblyNames) [0x0019a] in /Users/poupou/git/xcode11/xamarin-macios/tests/xtro-sharpie/Runner.cs:54
  at Extrospection.MainClass.Main (System.String[] args) [0x00046] in /Users/poupou/git/xcode11/xamarin-macios/tests/xtro-sharpie/Program.cs:20
```

due to

```diff
-typedef CF_ENUM(NSInteger, AVAudioSessionErrorCode) {
+typedef CF_ENUM(AVAudioInteger, AVAudioSessionErrorCode) {
```
https://github.com/xamarin/xamarin-macios/wiki/CoreAudioTypes-iOS-xcode11-beta4

* [tests] CoreText stopped reporting error when font files are missing

* Fix xtro (EnumCheck.cs) and update its data files

* Fix xtro results (due to some local changes)
This commit is contained in:
Sebastien Pouliot 2019-07-18 05:44:34 -04:00 коммит произвёл Alex Soto
Родитель 8d8401e8fb
Коммит 7fcd8d7974
86 изменённых файлов: 647 добавлений и 861 удалений

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

@ -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_3.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode11-beta3.app/Contents/Developer
XCODE_URL=http://xamarin-storage/bot-provisioning/xcodes/Xcode_11_Beta_4.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode11-beta4.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.1.$(IOS_COMMIT_DISTANCE)
MAC_PACKAGE_VERSION=5.99.1.$(MAC_COMMIT_DISTANCE)
IOS_PACKAGE_VERSION=12.99.2.$(IOS_COMMIT_DISTANCE)
MAC_PACKAGE_VERSION=5.99.2.$(MAC_COMMIT_DISTANCE)

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

@ -1949,9 +1949,6 @@ namespace ARKit {
[DisableDefaultCtor]
interface ARTrackedRaycast {
[Export ("updateQuery:")]
void Update (ARRaycastQuery query);
[Export ("stopTracking")]
void StopTracking ();
}

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

@ -6698,7 +6698,7 @@ namespace UIKit {
[iOS (7,0)]
[BaseType (typeof (UICommand))]
[DesignatedDefaultCtor]
interface UIKeyCommand : NSMutableCopying {
interface UIKeyCommand {
[iOS (13,0), TV (13,0)]
[Export ("title")]

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

@ -73,7 +73,8 @@ namespace MonoTouchFixtures.CoreText {
using (var url = NSUrl.FromFilename (non_existent_path)) {
var err = CTFontManager.RegisterFontsForUrl (url, CTFontManagerScope.Process);
Assert.IsNotNull (err, "err 3");
// xcode 11 beta 4 stopped reporting errors
// Assert.IsNotNull (err, "err 3");
err = CTFontManager.UnregisterFontsForUrl (url, CTFontManagerScope.Process);
#if MONOMAC
Assert.IsNull (err, "err 4");
@ -144,11 +145,12 @@ namespace MonoTouchFixtures.CoreText {
CTFontManager.UnregisterFonts (array, CTFontManagerScope.Process, SuccessDone);
}
using (var url = NSUrl.FromFilename (non_existent_path)) {
var array = new [] { url };
CTFontManager.RegisterFonts (array, CTFontManagerScope.Process, true, FailureDone);
CTFontManager.UnregisterFonts (array, CTFontManagerScope.Process, FailureDone);
}
// xcode 11 beta 4 stopped reporting errors
// using (var url = NSUrl.FromFilename (non_existent_path)) {
// var array = new [] { url };
// CTFontManager.RegisterFonts (array, CTFontManagerScope.Process, true, FailureDone);
// CTFontManager.UnregisterFonts (array, CTFontManagerScope.Process, FailureDone);
// }
}
[Test]
@ -163,9 +165,10 @@ namespace MonoTouchFixtures.CoreText {
using (var url = NSUrl.FromFilename (non_existent_path)) {
var err = CTFontManager.RegisterFontsForUrl (new [] { url }, CTFontManagerScope.Process);
Assert.IsNotNull (err, "err 3");
Assert.AreEqual (1, err.Length, "err 3 l");
Assert.IsNotNull (err [0], "err 3[0]");
// xcode 11 beta 4 stopped reporting errors
// Assert.IsNotNull (err, "err 3");
// Assert.AreEqual (1, err.Length, "err 3 l");
// Assert.IsNotNull (err [0], "err 3[0]");
err = CTFontManager.UnregisterFontsForUrl (new [] { url }, CTFontManagerScope.Process);
#if MONOMAC
Assert.IsNull (err, "err 4");

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

@ -68,6 +68,7 @@ namespace Extrospection {
case "NSUInteger":
case "CFIndex":
case "CFOptionFlags":
case "AVAudioInteger":
native_size = 8; // in managed code it's always the largest size
native = true;
break;

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

@ -10,16 +10,25 @@
!missing-enum! AVAudio3DMixingSourceMode not bound
!missing-enum! AVAudioEnvironmentOutputType not bound
!missing-enum! AVCapturePhotoQualityPrioritization not bound
!missing-enum! AVMovieWritingOptions not bound
!missing-enum! AVSpeechSynthesisVoiceGender not bound
!missing-field! AVAssetDownloadTaskMediaSelectionPrefersMultichannelKey not bound
!missing-field! AVAssetExportPresetHEVC1920x1080WithAlpha not bound
!missing-field! AVAssetExportPresetHEVC3840x2160WithAlpha not bound
!missing-field! AVAssetExportPresetHEVCHighestQualityWithAlpha not bound
!missing-field! AVContentKeyRequestRequiresValidationDataInSecureTokenKey not bound
!missing-field! AVContentKeySystemAuthorizationToken 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! AVMediaCharacteristicContainsAlphaChannel not bound
!missing-field! AVMediaCharacteristicIsOriginalContent not bound
!missing-field! AVMovieReferenceRestrictionsKey not bound
!missing-field! AVOutputSettingsPresetHEVC1920x1080WithAlpha not bound
!missing-field! AVOutputSettingsPresetHEVC3840x2160WithAlpha not bound
!missing-field! AVPlayerItemMediaSelectionDidChangeNotification not bound
!missing-field! AVPlayerItemRecommendedTimeOffsetFromLiveDidChangeNotification not bound
!missing-field! AVSemanticSegmentationMatteTypeHair not bound
!missing-field! AVSemanticSegmentationMatteTypeSkin not bound
@ -40,6 +49,13 @@
!missing-selector! +AVCaptureDevice::extrinsicMatrixFromDevice:toDevice: not bound
!missing-selector! +AVCaptureMultiCamSession::isMultiCamSupported not bound
!missing-selector! +AVContentKeyResponse::contentKeyResponseWithAuthorizationTokenData: 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! +AVMutableVideoComposition::videoCompositionWithPropertiesOfAsset:prototypeInstruction: not bound
!missing-selector! +AVSemanticSegmentationMatte::semanticSegmentationMatteFromImageSourceAuxiliaryDataType:dictionaryRepresentation:error: not bound
!missing-selector! AVAsset::minimumTimeOffsetFromLive not bound
@ -60,6 +76,7 @@
!missing-selector! AVAudioSession::allowHapticsAndSystemSoundsDuringRecording not bound
!missing-selector! AVAudioSession::setAllowHapticsAndSystemSoundsDuringRecording:error: not bound
!missing-selector! AVAudioSinkNode::initWithReceiverBlock: not bound
!missing-selector! AVAudioSourceNode::initWithFormat:renderBlock: not bound
!missing-selector! AVAudioSourceNode::initWithRenderBlock: not bound
!missing-selector! AVCaptureDevice::constituentDevices not bound
!missing-selector! AVCaptureDevice::isVirtualDevice not bound
@ -96,56 +113,6 @@
!missing-selector! AVCompositionTrack::formatDescriptionReplacements not bound
!missing-selector! AVCompositionTrackFormatDescriptionReplacement::originalFormatDescription not bound
!missing-selector! AVCompositionTrackFormatDescriptionReplacement::replacementFormatDescription not bound
!missing-selector! AVMutableCompositionTrack::replaceFormatDescription:withFormatDescription: not bound
!missing-selector! AVPlayerItem::automaticallyPreservesTimeOffsetFromLive not bound
!missing-selector! AVPlayerItem::configuredTimeOffsetFromLive not bound
!missing-selector! AVPlayerItem::isAudioSpatializationAllowed not bound
!missing-selector! AVPlayerItem::recommendedTimeOffsetFromLive not bound
!missing-selector! AVPlayerItem::setAudioSpatializationAllowed: not bound
!missing-selector! AVPlayerItem::setAutomaticallyPreservesTimeOffsetFromLive: not bound
!missing-selector! AVPlayerItem::setConfiguredTimeOffsetFromLive: not bound
!missing-selector! AVPlayerMediaSelectionCriteria::initWithPrincipalMediaCharacteristics:preferredLanguages:preferredMediaCharacteristics: not bound
!missing-selector! AVPlayerMediaSelectionCriteria::principalMediaCharacteristics not bound
!missing-selector! AVSampleBufferDisplayLayer::preventsDisplaySleepDuringVideoPlayback not bound
!missing-selector! AVSampleBufferDisplayLayer::setPreventsDisplaySleepDuringVideoPlayback: not bound
!missing-selector! AVSemanticSegmentationMatte::dictionaryRepresentationForAuxiliaryDataType: not bound
!missing-selector! AVSemanticSegmentationMatte::matteType not bound
!missing-selector! AVSemanticSegmentationMatte::mattingImage not bound
!missing-selector! AVSemanticSegmentationMatte::pixelFormatType not bound
!missing-selector! AVSemanticSegmentationMatte::semanticSegmentationMatteByApplyingExifOrientation: not bound
!missing-selector! AVSemanticSegmentationMatte::semanticSegmentationMatteByReplacingSemanticSegmentationMatteWithPixelBuffer:error: not bound
!missing-selector! AVSpeechSynthesisVoice::audioFileSettings not bound
!missing-selector! AVSpeechSynthesisVoice::gender not bound
!missing-selector! AVSpeechSynthesizer::mixToTelephonyUplink not bound
!missing-selector! AVSpeechSynthesizer::setMixToTelephonyUplink: not bound
!missing-selector! AVSpeechSynthesizer::synthesizerAudioSession not bound
!missing-selector! AVSpeechSynthesizer::writeUtterance:toBufferCallback: not bound
!missing-selector! AVVideoCompositionRenderHint::endCompositionTime not bound
!missing-selector! AVVideoCompositionRenderHint::startCompositionTime not bound
!missing-type! AVAudioSinkNode not bound
!missing-type! AVAudioSourceNode not bound
!missing-type! AVCaptureMultiCamSession not bound
!missing-type! AVCompositionTrackFormatDescriptionReplacement not bound
!missing-type! AVSemanticSegmentationMatte not bound
!missing-type! AVVideoCompositionRenderHint not bound
## 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
@ -177,6 +144,7 @@
!missing-selector! AVMovieTrack::mediaDecodeTimeRange not bound
!missing-selector! AVMovieTrack::mediaPresentationTimeRange not bound
!missing-selector! AVMutableCompositionTrack::isEnabled not bound
!missing-selector! AVMutableCompositionTrack::replaceFormatDescription:withFormatDescription: not bound
!missing-selector! AVMutableCompositionTrack::setEnabled: not bound
!missing-selector! AVMutableMovie::addMutableTracksCopyingSettingsFromTracks:options: not bound
!missing-selector! AVMutableMovie::addMutableTrackWithMediaType:copySettingsFromTrack:options: not bound
@ -257,6 +225,35 @@
!missing-selector! AVMutableMovieTrack::setSampleReferenceBaseURL: not bound
!missing-selector! AVMutableMovieTrack::setTimescale: not bound
!missing-selector! AVMutableMovieTrack::timescale not bound
!missing-selector! AVPlayerItem::automaticallyPreservesTimeOffsetFromLive not bound
!missing-selector! AVPlayerItem::configuredTimeOffsetFromLive not bound
!missing-selector! AVPlayerItem::isAudioSpatializationAllowed not bound
!missing-selector! AVPlayerItem::recommendedTimeOffsetFromLive not bound
!missing-selector! AVPlayerItem::setAudioSpatializationAllowed: not bound
!missing-selector! AVPlayerItem::setAutomaticallyPreservesTimeOffsetFromLive: not bound
!missing-selector! AVPlayerItem::setConfiguredTimeOffsetFromLive: not bound
!missing-selector! AVPlayerMediaSelectionCriteria::initWithPrincipalMediaCharacteristics:preferredLanguages:preferredMediaCharacteristics: not bound
!missing-selector! AVPlayerMediaSelectionCriteria::principalMediaCharacteristics not bound
!missing-selector! AVSampleBufferDisplayLayer::preventsDisplaySleepDuringVideoPlayback not bound
!missing-selector! AVSampleBufferDisplayLayer::setPreventsDisplaySleepDuringVideoPlayback: not bound
!missing-selector! AVSemanticSegmentationMatte::dictionaryRepresentationForAuxiliaryDataType: not bound
!missing-selector! AVSemanticSegmentationMatte::matteType not bound
!missing-selector! AVSemanticSegmentationMatte::mattingImage not bound
!missing-selector! AVSemanticSegmentationMatte::pixelFormatType not bound
!missing-selector! AVSemanticSegmentationMatte::semanticSegmentationMatteByApplyingExifOrientation: not bound
!missing-selector! AVSemanticSegmentationMatte::semanticSegmentationMatteByReplacingSemanticSegmentationMatteWithPixelBuffer:error: not bound
!missing-selector! AVSpeechSynthesisVoice::audioFileSettings not bound
!missing-selector! AVSpeechSynthesisVoice::gender not bound
!missing-selector! AVSpeechSynthesizer::mixToTelephonyUplink not bound
!missing-selector! AVSpeechSynthesizer::setMixToTelephonyUplink: not bound
!missing-selector! AVSpeechSynthesizer::synthesizerAudioSession not bound
!missing-selector! AVSpeechSynthesizer::writeUtterance:toBufferCallback: not bound
!missing-selector! AVVideoCompositionRenderHint::endCompositionTime not bound
!missing-selector! AVVideoCompositionRenderHint::startCompositionTime not bound
!missing-type! AVAudioSinkNode not bound
!missing-type! AVAudioSourceNode not bound
!missing-type! AVCaptureMultiCamSession not bound
!missing-type! AVCompositionTrackFormatDescriptionReplacement not bound
!missing-type! AVFragmentedMovie not bound
!missing-type! AVFragmentedMovieMinder not bound
!missing-type! AVFragmentedMovieTrack not bound
@ -265,3 +262,5 @@
!missing-type! AVMovieTrack not bound
!missing-type! AVMutableMovie not bound
!missing-type! AVMutableMovieTrack not bound
!missing-type! AVSemanticSegmentationMatte not bound
!missing-type! AVVideoCompositionRenderHint not bound

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

@ -83,6 +83,8 @@
!missing-field! CNLabelContactRelationGrandchild not bound
!missing-field! CNLabelContactRelationGrandchildOrSiblingsChild not bound
!missing-field! CNLabelContactRelationGranddaughter not bound
!missing-field! CNLabelContactRelationGranddaughterDaughtersDaughter not bound
!missing-field! CNLabelContactRelationGranddaughterSonsDaughter not bound
!missing-field! CNLabelContactRelationGrandfather not bound
!missing-field! CNLabelContactRelationGrandfatherFathersFather not bound
!missing-field! CNLabelContactRelationGrandfatherMothersFather not bound
@ -97,6 +99,8 @@
!missing-field! CNLabelContactRelationGrandnieceSistersGranddaughter not bound
!missing-field! CNLabelContactRelationGrandparent not bound
!missing-field! CNLabelContactRelationGrandson not bound
!missing-field! CNLabelContactRelationGrandsonDaughtersSon not bound
!missing-field! CNLabelContactRelationGrandsonSonsSon not bound
!missing-field! CNLabelContactRelationGranduncle not bound
!missing-field! CNLabelContactRelationGreatGrandchild not bound
!missing-field! CNLabelContactRelationGreatGrandchildOrSiblingsGrandchild not bound

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

@ -1,9 +1,12 @@
!missing-enum! NSBatchInsertRequestResultType not bound
!missing-enum! NSPersistentCloudKitContainerSchemaInitializationOptions not bound
!missing-field! NSPersistentHistoryTokenKey not bound
!missing-field! NSPersistentStoreRemoteChangeNotification not bound
!missing-field! NSPersistentStoreRemoteChangeNotificationPostOptionKey not bound
!missing-field! NSPersistentStoreURLKey not bound
!missing-protocol-member! NSFetchedResultsControllerDelegate::controller:didChangeContentWithDifference: not found
!missing-protocol-member! NSFetchedResultsControllerDelegate::controller:didChangeContentWithSnapshot: not found
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:objects: not bound
!missing-selector! +NSPersistentHistoryChange::entityDescription not bound
!missing-selector! +NSPersistentHistoryChange::entityDescriptionWithContext: not bound
!missing-selector! +NSPersistentHistoryChange::fetchRequest not bound
@ -13,34 +16,10 @@
!missing-selector! +NSPersistentHistoryTransaction::fetchRequest not bound
!missing-selector! NSAttributeDescription::preservesValueInHistoryOnDeletion not bound
!missing-selector! NSAttributeDescription::setPreservesValueInHistoryOnDeletion: not bound
!missing-selector! NSDerivedAttributeDescription::derivationExpression not bound
!missing-selector! NSDerivedAttributeDescription::setDerivationExpression: not bound
!missing-selector! NSPersistentCloudKitContainer::recordForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainer::recordsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::containerIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerOptions::initWithContainerIdentifier: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::setShouldInitializeSchema: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::shouldInitializeSchema not bound
!missing-selector! NSPersistentHistoryChangeRequest::fetchRequest not bound
!missing-selector! NSPersistentHistoryChangeRequest::setFetchRequest: not bound
!missing-selector! NSPersistentStoreDescription::cloudKitContainerOptions not bound
!missing-selector! NSPersistentStoreDescription::setCloudKitContainerOptions: not bound
!missing-type! NSDerivedAttributeDescription not bound
!missing-type! NSPersistentCloudKitContainer not bound
!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
@ -48,5 +27,22 @@
!missing-selector! NSBatchInsertRequest::setResultType: not bound
!missing-selector! NSBatchInsertResult::result not bound
!missing-selector! NSBatchInsertResult::resultType not bound
!missing-selector! NSDerivedAttributeDescription::derivationExpression not bound
!missing-selector! NSDerivedAttributeDescription::setDerivationExpression: not bound
!missing-selector! NSPersistentCloudKitContainer::initializeCloudKitSchemaWithOptions:error: not bound
!missing-selector! NSPersistentCloudKitContainer::recordForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainer::recordsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::containerIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerOptions::initWithContainerIdentifier: not bound
!missing-selector! NSPersistentHistoryChangeRequest::fetchRequest not bound
!missing-selector! NSPersistentHistoryChangeRequest::setFetchRequest: not bound
!missing-selector! NSPersistentStoreCoordinator::currentPersistentHistoryTokenFromStores: not bound
!missing-selector! NSPersistentStoreDescription::cloudKitContainerOptions not bound
!missing-selector! NSPersistentStoreDescription::setCloudKitContainerOptions: not bound
!missing-type! NSBatchInsertRequest not bound
!missing-type! NSBatchInsertResult not bound
!missing-type! NSDerivedAttributeDescription not bound
!missing-type! NSPersistentCloudKitContainer not bound
!missing-type! NSPersistentCloudKitContainerOptions not bound

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

@ -2,6 +2,11 @@
!missing-field! kCIImageAuxiliarySemanticSegmentationHairMatte not bound
!missing-field! kCIImageAuxiliarySemanticSegmentationSkinMatte not bound
!missing-field! kCIImageAuxiliarySemanticSegmentationTeethMatte not bound
!missing-field! kCIImageRepresentationAVSemanticSegmentationMattes not bound
!missing-field! kCIImageRepresentationSemanticSegmentationHairMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationSkinMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationTeethMatteImage not bound
!missing-field! kCIInputEnableEDRModeKey not bound
!missing-protocol! CIAccordionFoldTransition not bound
!missing-protocol! CIAffineClamp not bound
!missing-protocol! CIAffineTile not bound
@ -54,9 +59,11 @@
!missing-protocol! CIFalseColor not bound
!missing-protocol! CIFilter not bound
!missing-protocol! CIFlashTransition not bound
!missing-protocol! CIFourCoordinateGeometryFilter not bound
!missing-protocol! CIFourfoldReflectedTile not bound
!missing-protocol! CIFourfoldRotatedTile not bound
!missing-protocol! CIFourfoldTranslatedTile not bound
!missing-protocol! CIGaborGradients not bound
!missing-protocol! CIGammaAdjust not bound
!missing-protocol! CIGaussianBlur not bound
!missing-protocol! CIGaussianGradient not bound
@ -69,6 +76,9 @@
!missing-protocol! CIHueAdjust not bound
!missing-protocol! CIHueSaturationValueGradient not bound
!missing-protocol! CIKaleidoscope not bound
!missing-protocol! CIKeystoneCorrectionCombined not bound
!missing-protocol! CIKeystoneCorrectionHorizontal not bound
!missing-protocol! CIKeystoneCorrectionVertical not bound
!missing-protocol! CILabDeltaE not bound
!missing-protocol! CILanczosScaleTransform not bound
!missing-protocol! CILenticularHaloGenerator not bound
@ -99,6 +109,7 @@
!missing-protocol! CIParallelogramTile not bound
!missing-protocol! CIPDF417BarcodeGenerator not bound
!missing-protocol! CIPerspectiveCorrection not bound
!missing-protocol! CIPerspectiveRotate not bound
!missing-protocol! CIPerspectiveTile not bound
!missing-protocol! CIPerspectiveTransform not bound
!missing-protocol! CIPerspectiveTransformWithExtent not bound
@ -109,6 +120,7 @@
!missing-protocol! CIRadialGradient not bound
!missing-protocol! CIRandomGenerator not bound
!missing-protocol! CIRippleTransition not bound
!missing-protocol! CIRoundedRectangleGenerator not bound
!missing-protocol! CISaliencyMap not bound
!missing-protocol! CISepiaTone not bound
!missing-protocol! CIShadedMaterial not bound
@ -207,6 +219,7 @@
!missing-selector! +CIFilter::fourfoldReflectedTileFilter not bound
!missing-selector! +CIFilter::fourfoldRotatedTileFilter not bound
!missing-selector! +CIFilter::fourfoldTranslatedTileFilter not bound
!missing-selector! +CIFilter::gaborGradientsFilter not bound
!missing-selector! +CIFilter::gammaAdjustFilter not bound
!missing-selector! +CIFilter::gaussianBlurFilter not bound
!missing-selector! +CIFilter::gaussianGradientFilter not bound
@ -221,6 +234,9 @@
!missing-selector! +CIFilter::hueBlendModeFilter not bound
!missing-selector! +CIFilter::hueSaturationValueGradientFilter not bound
!missing-selector! +CIFilter::kaleidoscopeFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionCombinedFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionHorizontalFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionVerticalFilter not bound
!missing-selector! +CIFilter::LabDeltaE not bound
!missing-selector! +CIFilter::lanczosScaleTransformFilter not bound
!missing-selector! +CIFilter::lenticularHaloGeneratorFilter not bound
@ -260,6 +276,7 @@
!missing-selector! +CIFilter::parallelogramTileFilter not bound
!missing-selector! +CIFilter::PDF417BarcodeGenerator not bound
!missing-selector! +CIFilter::perspectiveCorrectionFilter not bound
!missing-selector! +CIFilter::perspectiveRotateFilter not bound
!missing-selector! +CIFilter::perspectiveTileFilter not bound
!missing-selector! +CIFilter::perspectiveTransformFilter not bound
!missing-selector! +CIFilter::perspectiveTransformWithExtentFilter not bound
@ -278,6 +295,7 @@
!missing-selector! +CIFilter::radialGradientFilter not bound
!missing-selector! +CIFilter::randomGeneratorFilter not bound
!missing-selector! +CIFilter::rippleTransitionFilter not bound
!missing-selector! +CIFilter::roundedRectangleGeneratorFilter not bound
!missing-selector! +CIFilter::saliencyMapFilter not bound
!missing-selector! +CIFilter::saturationBlendModeFilter not bound
!missing-selector! +CIFilter::screenBlendModeFilter not bound
@ -331,28 +349,8 @@
!missing-selector! +CIImage::yellowImage not bound
!missing-selector! CIBlendKernel::applyWithForeground:background:colorSpace: not bound
!missing-selector! CIContext::depthBlurEffectFilterForImage:disparityImage:portraitEffectsMatte:hairSemanticSegmentation:orientation:options: not bound
!missing-selector! CIImage::imageByApplyingTransform:highQualityDownsample: not bound
!missing-selector! CIImage::initWithCGImageSource:index:options: not bound
!missing-selector! CIImage::initWithSemanticSegmentationMatte: not bound
!missing-selector! CIImage::initWithSemanticSegmentationMatte:options: not bound
!missing-selector! CIImage::semanticSegmentationMatte not bound
## appended from unclassified file
!missing-field! kCIImageRepresentationAVSemanticSegmentationMattes not bound
!missing-field! kCIImageRepresentationSemanticSegmentationHairMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationSkinMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationTeethMatteImage not bound
!missing-protocol! CIGaborGradients not bound
!missing-protocol! CIKeystoneCorrectionCombined not bound
!missing-protocol! CIKeystoneCorrectionHorizontal not bound
!missing-protocol! CIKeystoneCorrectionVertical not bound
!missing-protocol! CIPerspectiveRotate not bound
!missing-selector! +CIFilter::gaborGradientsFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionCombinedFilter not bound
!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

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

@ -3,6 +3,9 @@
!deprecated-attribute-missing! CLBeaconRegion::initWithProximityUUID:major:identifier: missing a [Deprecated] attribute
!deprecated-attribute-missing! CLBeaconRegion::initWithProximityUUID:major:minor:identifier: missing a [Deprecated] attribute
!deprecated-attribute-missing! CLBeaconRegion::proximityUUID missing a [Deprecated] attribute
!deprecated-attribute-missing! CLLocationManager::allowDeferredLocationUpdatesUntilTraveled:timeout: missing a [Deprecated] attribute
!deprecated-attribute-missing! CLLocationManager::deferredLocationUpdatesAvailable missing a [Deprecated] attribute
!deprecated-attribute-missing! CLLocationManager::disallowDeferredLocationUpdates missing a [Deprecated] attribute
!deprecated-attribute-missing! CLLocationManager::rangedRegions missing a [Deprecated] attribute
!deprecated-attribute-missing! CLLocationManager::startRangingBeaconsInRegion: missing a [Deprecated] attribute
!deprecated-attribute-missing! CLLocationManager::stopRangingBeaconsInRegion: missing a [Deprecated] attribute
@ -28,7 +31,3 @@
!missing-selector! CLLocationManager::startRangingBeaconsSatisfyingConstraint: not bound
!missing-selector! CLLocationManager::stopRangingBeaconsSatisfyingConstraint: not bound
!missing-type! CLBeaconIdentityConstraint not bound
## appended from unclassified file
!deprecated-attribute-missing! CLLocationManager::allowDeferredLocationUpdatesUntilTraveled:timeout: missing a [Deprecated] attribute
!deprecated-attribute-missing! CLLocationManager::deferredLocationUpdatesAvailable missing a [Deprecated] attribute
!deprecated-attribute-missing! CLLocationManager::disallowDeferredLocationUpdates missing a [Deprecated] attribute

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

@ -19,20 +19,25 @@
!missing-selector! +MLParameterKey::linkedModelSearchPath not bound
!missing-selector! +MLParameterKey::miniBatchSize not bound
!missing-selector! +MLParameterKey::momentum not bound
!missing-selector! +MLParameterKey::removeExamples not bound
!missing-selector! +MLParameterKey::seed not bound
!missing-selector! +MLParameterKey::shuffle not bound
!missing-selector! +MLUpdateTask::updateTaskForModelAtURL:trainingData:configuration:completionHandler:error: not bound
!missing-selector! +MLUpdateTask::updateTaskForModelAtURL:trainingData:configuration:progressHandlers:error: not bound
!missing-selector! MLKey::name not bound
!missing-selector! MLKey::scope not bound
!missing-selector! MLModel::predictionsFromBatch:error: not bound
!missing-selector! MLModelConfiguration::allowLowPrecisionAccumulationOnGPU not bound
!missing-selector! MLModelConfiguration::modelParameters not bound
!missing-selector! MLModelConfiguration::parameters not bound
!missing-selector! MLModelConfiguration::preferredMetalDevice not bound
!missing-selector! MLModelConfiguration::setAllowLowPrecisionAccumulationOnGPU: not bound
!missing-selector! MLModelConfiguration::setModelParameters: not bound
!missing-selector! MLModelConfiguration::setParameters: not bound
!missing-selector! MLModelConfiguration::setPreferredMetalDevice: not bound
!missing-selector! MLModelConfiguration::setUpdateParameters: not bound
!missing-selector! MLModelConfiguration::updateParameters not bound
!missing-selector! MLModelDescription::isUpdatable not bound
!missing-selector! MLModelDescription::parameterDescriptionsByKey not bound
!missing-selector! MLModelDescription::trainingInputDescriptionsByName not bound
!missing-selector! MLNumericConstraint::enumeratedNumbers not bound
!missing-selector! MLNumericConstraint::maxNumber not bound
@ -40,6 +45,7 @@
!missing-selector! MLParameterDescription::defaultValue not bound
!missing-selector! MLParameterDescription::key not bound
!missing-selector! MLParameterDescription::numericConstraint not bound
!missing-selector! MLParameterKey::scopedTo: not bound
!missing-selector! MLTask::cancel not bound
!missing-selector! MLTask::error not bound
!missing-selector! MLTask::resume not bound
@ -61,11 +67,3 @@
!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

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

@ -0,0 +1,2 @@
!missing-pinvoke! CMTimebaseSetMasterClock is not bound
!missing-pinvoke! CMTimebaseSetMasterTimebase is not bound

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

@ -0,0 +1,2 @@
!deprecated-attribute-missing! NFCNDEFPayload::wellKnowTypeTextPayloadWithString:locale: missing a [Deprecated] attribute
!missing-selector! +NFCNDEFPayload::wellKnownTypeTextPayloadWithString:locale: not bound

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

@ -0,0 +1,4 @@
!missing-field! kCTFontFeatureSampleTextKey not bound
!missing-field! kCTFontFeatureTooltipTextKey not bound
!missing-pinvoke! CTFontCreateForStringWithLanguage is not bound
!missing-pinvoke! CTGlyphInfoGetGlyph is not bound

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

@ -31,6 +31,7 @@
!missing-selector! NSFileProviderManager::evictItemWithIdentifier:completionHandler: not bound
!missing-selector! NSFileProviderManager::getUserVisibleURLForItemIdentifier:completionHandler: not bound
!missing-selector! NSFileProviderManager::reimportItemsBelowItemWithIdentifier:completionHandler: not bound
!missing-selector! NSFileProviderManager::setDownloadPolicy:forItemWithIdentifier:completionHandler: not bound
!missing-selector! NSFileProviderRequest::requestingApplicationIdentifier not bound
!missing-selector! NSFileProviderSearchQuery::allowedContentTypes not bound
!missing-selector! NSFileProviderSearchQuery::allowedPathExtensions not bound
@ -40,5 +41,3 @@
!missing-type! NSFileProviderItemVersion not bound
!missing-type! NSFileProviderRequest not bound
!missing-type! NSFileProviderSearchQuery not bound
## appended from unclassified file
!missing-selector! NSFileProviderManager::setDownloadPolicy:forItemWithIdentifier:completionHandler: not bound

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

@ -9,6 +9,5 @@
!missing-selector! GKMatchRequest::setTournamentForInvitePool: not bound
!missing-selector! GKMatchRequest::tournamentForInvitePool not bound
!missing-selector! GKPlayer::gamePlayerID not bound
!missing-selector! GKPlayer::teamPlayerID not bound
## appended from unclassified file
!missing-selector! GKPlayer::scopedIDsArePersistent not bound
!missing-selector! GKPlayer::teamPlayerID not bound

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

@ -50,7 +50,10 @@
!missing-selector! HKQuantitySeriesSampleQuery::orderByQuantitySampleStartDate not bound
!missing-selector! HKQuantitySeriesSampleQuery::setIncludeSample: not bound
!missing-selector! HKQuantitySeriesSampleQuery::setOrderByQuantitySampleStartDate: not bound
!missing-selector! HKSampleType::isMaximumDurationRestricted not bound
!missing-selector! HKSampleType::isMinimumDurationRestricted not bound
!missing-selector! HKSampleType::maximumAllowedDuration not bound
!missing-selector! HKSampleType::minimumAllowedDuration not bound
!missing-selector! HKStatistics::duration not bound
!missing-selector! HKStatistics::durationForSource: not bound
!missing-type! HKAudiogramSample not bound
@ -62,7 +65,3 @@
!missing-type! HKHeartbeatSeriesQuery not bound
!missing-type! HKHeartbeatSeriesSample not bound
!wrong-base-type! HKCumulativeQuantitySeriesSample expected HKCumulativeQuantitySample actual HKQuantitySample
## appended from unclassified file
!missing-selector! HKSampleType::isMaximumDurationRestricted not bound
!missing-selector! HKSampleType::isMinimumDurationRestricted not bound
!missing-selector! HKSampleType::minimumAllowedDuration not bound

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

@ -1,22 +1,20 @@
## appended from unclassified file
!missing-enum! HMHomeManagerAuthorizationStatus not bound
!missing-protocol! HMNetworkConfigurationProfileDelegate not bound
!missing-protocol-member! HMHomeManagerDelegate::homeManager:didReceiveAddAccessoryRequest: not found
!missing-protocol-member! HMHomeManagerDelegate::homeManager:didUpdateAuthorizationStatus: not found
!missing-selector! HMAccessoryOwnershipToken::initWithData: not bound
!missing-selector! HMAccessorySetupPayload::initWithURL:ownershipToken: not bound
!missing-selector! HMAddAccessoryRequest::accessoryCategory not bound
!missing-selector! HMAddAccessoryRequest::accessoryName not bound
!missing-selector! HMAddAccessoryRequest::home not bound
!missing-selector! HMAddAccessoryRequest::payloadWithOwnershipToken: not bound
!missing-selector! HMAddAccessoryRequest::payloadWithURL:ownershipToken: not bound
!missing-selector! HMAddAccessoryRequest::requiresOwnershipToken not bound
!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! HMAccessoryOwnershipToken not bound
!missing-type! HMAddAccessoryRequest not bound
!missing-type! HMNetworkConfigurationProfile not bound

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

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

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

@ -18,6 +18,7 @@
!missing-enum! INAddMediaMediaDestinationUnsupportedReason not bound
!missing-enum! INAddMediaMediaItemUnsupportedReason not bound
!missing-enum! INAddTasksTargetTaskListConfirmationReason not bound
!missing-enum! INAddTasksTemporalEventTriggerUnsupportedReason not bound
!missing-enum! INCallAudioRoute not bound
!missing-enum! INDeleteTasksIntentResponseCode not bound
!missing-enum! INDeleteTasksTaskListUnsupportedReason not bound
@ -35,6 +36,7 @@
!missing-enum! INReservationStatus not bound
!missing-enum! INSearchForMediaIntentResponseCode not bound
!missing-enum! INSearchForMediaMediaItemUnsupportedReason not bound
!missing-enum! INSetTaskAttributeTemporalEventTriggerUnsupportedReason not bound
!missing-enum! INSnoozeTasksIntentResponseCode not bound
!missing-enum! INSnoozeTasksTaskUnsupportedReason not bound
!missing-enum! INStartCallCallCapabilityUnsupportedReason not bound
@ -55,6 +57,7 @@
!missing-protocol! INUpdateMediaAffinityIntentHandling not bound
!missing-protocol-member! INAddTasksIntentHandling::resolvePriorityForAddTasks:withCompletion: not found
!missing-protocol-member! INAddTasksIntentHandling::resolveTargetTaskListForAddTasks:completion: not found
!missing-protocol-member! INAddTasksIntentHandling::resolveTemporalEventTriggerForAddTasks:completion: not found
!missing-protocol-member! INPlayMediaIntentHandling::resolveMediaItemsForPlayMedia:withCompletion: not found
!missing-protocol-member! INPlayMediaIntentHandling::resolvePlaybackQueueLocationForPlayMedia:withCompletion: not found
!missing-protocol-member! INPlayMediaIntentHandling::resolvePlaybackRepeatModeForPlayMedia:withCompletion: not found
@ -65,9 +68,11 @@
!missing-protocol-member! INSearchForNotebookItemsIntentHandling::resolveTemporalEventTriggerTypesForSearchForNotebookItems:withCompletion: not found
!missing-protocol-member! INSetTaskAttributeIntentHandling::resolvePriorityForSetTaskAttribute:withCompletion: not found
!missing-protocol-member! INSetTaskAttributeIntentHandling::resolveTaskTitleForSetTaskAttribute:withCompletion: not found
!missing-protocol-member! INSetTaskAttributeIntentHandling::resolveTemporalEventTriggerForSetTaskAttribute:completion: not found
!missing-selector! +INAddMediaMediaDestinationResolutionResult::unsupportedForReason: not bound
!missing-selector! +INAddMediaMediaItemResolutionResult::unsupportedForReason: not bound
!missing-selector! +INAddTasksTargetTaskListResolutionResult::confirmationRequiredWithTaskListToConfirm:forReason: not bound
!missing-selector! +INAddTasksTemporalEventTriggerResolutionResult::unsupportedForReason: not bound
!missing-selector! +INCallCapabilityResolutionResult::confirmationRequiredWithCallCapabilityToConfirm: not bound
!missing-selector! +INCallCapabilityResolutionResult::successWithResolvedCallCapability: not bound
!missing-selector! +INDeleteTasksTaskListResolutionResult::unsupportedForReason: not bound
@ -114,6 +119,7 @@
!missing-selector! +INPlayMediaMediaItemResolutionResult::unsupportedForReason: not bound
!missing-selector! +INPlayMediaPlaybackSpeedResolutionResult::unsupportedForReason: not bound
!missing-selector! +INSearchForMediaMediaItemResolutionResult::unsupportedForReason: not bound
!missing-selector! +INSetTaskAttributeTemporalEventTriggerResolutionResult::unsupportedForReason: not bound
!missing-selector! +INSnoozeTasksTaskResolutionResult::unsupportedForReason: not bound
!missing-selector! +INSpeedResolutionResult::confirmationRequiredWithSpeedToConfirm: not bound
!missing-selector! +INSpeedResolutionResult::disambiguationWithSpeedToDisambiguate: not bound
@ -144,6 +150,7 @@
!missing-selector! INAddTasksIntent::initWithTargetTaskList:taskTitles:spatialEventTrigger:temporalEventTrigger:priority: not bound
!missing-selector! INAddTasksIntent::priority not bound
!missing-selector! INAddTasksTargetTaskListResolutionResult::initWithTaskListResolutionResult: not bound
!missing-selector! INAddTasksTemporalEventTriggerResolutionResult::initWithTemporalEventTriggerResolutionResult: not bound
!missing-selector! INAirline::iataCode not bound
!missing-selector! INAirline::icaoCode not bound
!missing-selector! INAirline::initWithName:iataCode:icaoCode: not bound
@ -267,6 +274,7 @@
!missing-selector! INSetTaskAttributeIntent::initWithTargetTask:taskTitle:status:priority:spatialEventTrigger:temporalEventTrigger: not bound
!missing-selector! INSetTaskAttributeIntent::priority not bound
!missing-selector! INSetTaskAttributeIntent::taskTitle not bound
!missing-selector! INSetTaskAttributeTemporalEventTriggerResolutionResult::initWithTemporalEventTriggerResolutionResult: not bound
!missing-selector! INSnoozeTasksIntent::all not bound
!missing-selector! INSnoozeTasksIntent::initWithTasks:nextTriggerTime:all: not bound
!missing-selector! INSnoozeTasksIntent::nextTriggerTime not bound
@ -282,6 +290,8 @@
!missing-selector! INStartCallIntent::callCapability not bound
!missing-selector! INStartCallIntent::contacts not bound
!missing-selector! INStartCallIntent::destinationType not bound
!missing-selector! INStartCallIntent::initWithAudioRoute:destinationType:contacts:recordTypeForRedialing:callCapability: not bound
!missing-selector! INStartCallIntent::recordTypeForRedialing 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
@ -320,6 +330,7 @@
!missing-type! INAddMediaMediaDestinationResolutionResult not bound
!missing-type! INAddMediaMediaItemResolutionResult not bound
!missing-type! INAddTasksTargetTaskListResolutionResult not bound
!missing-type! INAddTasksTemporalEventTriggerResolutionResult not bound
!missing-type! INAirline not bound
!missing-type! INAirport not bound
!missing-type! INAirportGate not bound
@ -360,6 +371,7 @@
!missing-type! INSearchForMediaIntentResponse not bound
!missing-type! INSearchForMediaMediaItemResolutionResult not bound
!missing-type! INSeat not bound
!missing-type! INSetTaskAttributeTemporalEventTriggerResolutionResult not bound
!missing-type! INSnoozeTasksIntent not bound
!missing-type! INSnoozeTasksIntentResponse not bound
!missing-type! INSnoozeTasksTaskResolutionResult not bound
@ -381,17 +393,3 @@
!missing-type! INURLResolutionResult not bound
!missing-type! INUserContext not bound
!missing-type! INVolumeResolutionResult not bound
## appended from unclassified file
!missing-enum! INAddTasksTemporalEventTriggerUnsupportedReason not bound
!missing-enum! INSetTaskAttributeTemporalEventTriggerUnsupportedReason not bound
!missing-protocol-member! INAddTasksIntentHandling::resolveTemporalEventTriggerForAddTasks:completion: not found
!missing-protocol-member! INSetTaskAttributeIntentHandling::resolveTemporalEventTriggerForSetTaskAttribute:completion: not found
!missing-selector! +INAddTasksTemporalEventTriggerResolutionResult::unsupportedForReason: not bound
!missing-selector! +INSetTaskAttributeTemporalEventTriggerResolutionResult::unsupportedForReason: not bound
!missing-selector! INAddTasksTemporalEventTriggerResolutionResult::initWithTemporalEventTriggerResolutionResult: not bound
!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

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

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

@ -1,4 +1,5 @@
!missing-enum! MPSAliasingStrategy not bound
!missing-enum! MPSCNNConvolutionWeightsLayout not bound
!missing-enum! MPSDeviceOptions not bound
!missing-enum! MPSMatrixRandomDistribution not bound
!missing-enum! MPSPolygonType not bound
@ -15,6 +16,7 @@
!missing-protocol-conformance! MPSCNNBatchNormalizationNode should conform to MPSNNTrainableNode
!missing-protocol-conformance! MPSCNNConvolutionNode should conform to MPSNNTrainableNode
!missing-protocol-conformance! MPSCNNInstanceNormalizationNode should conform to MPSNNTrainableNode
!missing-protocol-member! MPSCNNConvolutionDataSource::weightsLayout not found
!missing-protocol-member! MPSCNNInstanceNormalizationDataSource::load not found
!missing-protocol-member! MPSCNNInstanceNormalizationDataSource::purge not found
!missing-selector! +MPSCNNConvolutionTransposeGradientNode::nodeWithSourceGradient:sourceImage:convolutionTransposeGradientState:weights: not bound
@ -49,6 +51,7 @@
!missing-selector! MPSCNNBatchNormalizationNode::trainingStyle not bound
!missing-selector! MPSCNNBinaryKernel::batchEncodingStorageSizeForPrimaryImage:secondaryImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNBinaryKernel::encodingStorageSizeForPrimaryImage:secondaryImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNConvolutionGradientState::gradientForWeightsLayout not bound
!missing-selector! MPSCNNConvolutionNode::setTrainingStyle: not bound
!missing-selector! MPSCNNConvolutionNode::trainingStyle not bound
!missing-selector! MPSCNNConvolutionTranspose::dataSource not bound
@ -73,6 +76,9 @@
!missing-selector! MPSCNNConvolutionTransposeGradient::sourceImageFeatureChannels not bound
!missing-selector! MPSCNNConvolutionTransposeGradientNode::initWithSourceGradient:sourceImage:convolutionTransposeGradientState:weights: not bound
!missing-selector! MPSCNNConvolutionTransposeGradientState::convolutionTranspose not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::biasesOffset not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::initWithWeights:weightsOffset:biases:biasesOffset:cnnConvolutionDescriptor: not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::weightsOffset not bound
!missing-selector! MPSCNNDropout::resultStateBatchForSourceImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNDropout::resultStateForSourceImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNDropout::temporaryResultStateBatchForCommandBuffer:sourceImage:sourceStates:destinationImage: not bound
@ -164,6 +170,7 @@
!missing-selector! MPSMatrixRandom::batchStart not bound
!missing-selector! MPSMatrixRandom::destinationDataType not bound
!missing-selector! MPSMatrixRandom::distributionType not bound
!missing-selector! MPSMatrixRandom::encodeToCommandBuffer:destinationMatrix: not bound
!missing-selector! MPSMatrixRandom::encodeToCommandBuffer:destinationVector: not bound
!missing-selector! MPSMatrixRandom::setBatchSize: not bound
!missing-selector! MPSMatrixRandom::setBatchStart: not bound
@ -511,22 +518,12 @@
!missing-selector! MPSSVGFDefaultTextureAllocator::textureWithPixelFormat:width:height: not bound
!missing-selector! MPSSVGFDenoiser::bilateralFilterIterations not bound
!missing-selector! MPSSVGFDenoiser::clearTemporalHistory not bound
!missing-selector! MPSSVGFDenoiser::depthNormalTexture not bound
!missing-selector! MPSSVGFDenoiser::destinationTexture not bound
!missing-selector! MPSSVGFDenoiser::destinationTexture2 not bound
!missing-selector! MPSSVGFDenoiser::encodeToCommandBuffer: not bound
!missing-selector! MPSSVGFDenoiser::encodeToCommandBuffer:sourceTexture:destinationTexture:sourceTexture2:destinationTexture2:motionVectorTexture:depthNormalTexture:previousDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::encodeToCommandBuffer:sourceTexture:motionVectorTexture:depthNormalTexture:previousDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::initWithDevice: not bound
!missing-selector! MPSSVGFDenoiser::initWithSVGF:textureAllocator: not bound
!missing-selector! MPSSVGFDenoiser::motionVectorTexture not bound
!missing-selector! MPSSVGFDenoiser::previousDepthNormalTexture not bound
!missing-selector! MPSSVGFDenoiser::releaseTemporaryTextures not bound
!missing-selector! MPSSVGFDenoiser::setBilateralFilterIterations: not bound
!missing-selector! MPSSVGFDenoiser::setDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::setMotionVectorTexture: not bound
!missing-selector! MPSSVGFDenoiser::setPreviousDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::setSourceTexture: not bound
!missing-selector! MPSSVGFDenoiser::setSourceTexture2: not bound
!missing-selector! MPSSVGFDenoiser::sourceTexture not bound
!missing-selector! MPSSVGFDenoiser::sourceTexture2 not bound
!missing-selector! MPSSVGFDenoiser::svgf not bound
!missing-selector! MPSSVGFDenoiser::textureAllocator not bound
!missing-selector! MPSTemporalAA::blendFactor not bound
@ -598,11 +595,3 @@
!missing-type! MPSTemporaryNDArray not bound
!unknown-simd-type-mapping! The Simd type vector_uchar16 does not have a mapping to a managed type. Please add one in SimdCheck.cs
!wrong-base-type! MPSTriangleAccelerationStructure expected MPSPolygonAccelerationStructure actual MPSAccelerationStructure
## appended from unclassified file
!missing-enum! MPSCNNConvolutionWeightsLayout not bound
!missing-protocol-member! MPSCNNConvolutionDataSource::weightsLayout not found
!missing-selector! MPSCNNConvolutionGradientState::gradientForWeightsLayout not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::biasesOffset not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::initWithWeights:weightsOffset:biases:biasesOffset:cnnConvolutionDescriptor: not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::weightsOffset not bound
!missing-selector! MPSMatrixRandom::encodeToCommandBuffer:destinationMatrix: not bound

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

@ -1,5 +1,7 @@
!missing-enum! QLThumbnailError not bound
!missing-enum! QLThumbnailGenerationRequestRepresentationTypes not bound
!missing-enum! QLThumbnailRepresentationType not bound
!missing-field! QLThumbnailErrorDomain not bound
!missing-selector! +QLThumbnailGenerator::sharedGenerator not bound
!missing-selector! QLThumbnailGenerationRequest::iconMode not bound
!missing-selector! QLThumbnailGenerationRequest::initWithFileAtURL:size:scale:representationTypes: not bound
@ -19,6 +21,3 @@
!missing-type! QLThumbnailGenerationRequest not bound
!missing-type! QLThumbnailGenerator not bound
!missing-type! QLThumbnailRepresentation not bound
## appended from unclassified file
!missing-enum! QLThumbnailError not bound
!missing-field! QLThumbnailErrorDomain not bound

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

@ -4,6 +4,7 @@
!missing-enum! SCNLightProbeType not bound
!missing-enum! SCNLightProbeUpdateType not bound
!missing-field! SCNHitTestOptionIgnoreLightArea not bound
!missing-field! SCNLightingModelShadowOnly not bound
!missing-field! SCNLightTypeArea not bound
!missing-protocol-member! SCNSceneRenderer::currentViewport not found
!missing-protocol-member! SCNSceneRenderer::isTemporalAntialiasingEnabled not found
@ -68,5 +69,3 @@
!missing-selector! SCNScene::wantsScreenSpaceReflection not bound
!missing-selector! SCNTechnique::library not bound
!missing-selector! SCNTechnique::setLibrary: not bound
## appended from unclassified file
!missing-field! SCNLightingModelShadowOnly not bound

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

@ -73,86 +73,7 @@
!unknown-native-enum! UITextWritingDirection bound
## Introduced and deprecated in Xcode 11 and likely it will be removed in a future beta
!missing-protocol-conformance! UIMenuElement should conform to UICommandGroupable
!missing-enum! UIDirectionalRectEdge not bound
!missing-enum! UICommandStateMask not bound
!missing-field! UICommandGroupAbout not bound
!missing-field! UICommandGroupAlignment not bound
!missing-field! UICommandGroupApplication not bound
!missing-field! UICommandGroupBringAllToFront not bound
!missing-field! UICommandGroupClose not bound
!missing-field! UICommandGroupEdit not bound
!missing-field! UICommandGroupFile not bound
!missing-field! UICommandGroupFind not bound
!missing-field! UICommandGroupFont not bound
!missing-field! UICommandGroupFormat not bound
!missing-field! UICommandGroupFullscreen not bound
!missing-field! UICommandGroupHelp not bound
!missing-field! UICommandGroupHide not bound
!missing-field! UICommandGroupLearn not bound
!missing-field! UICommandGroupLookup not bound
!missing-field! UICommandGroupMinimizeAndZoom not bound
!missing-field! UICommandGroupNewScene not bound
!missing-field! UICommandGroupPreferences not bound
!missing-field! UICommandGroupPrint not bound
!missing-field! UICommandGroupQuit not bound
!missing-field! UICommandGroupReplace not bound
!missing-field! UICommandGroupRoot not bound
!missing-field! UICommandGroupServices not bound
!missing-field! UICommandGroupShare not bound
!missing-field! UICommandGroupSpeech not bound
!missing-field! UICommandGroupSpelling not bound
!missing-field! UICommandGroupSpellingOptions not bound
!missing-field! UICommandGroupSpellingPanel not bound
!missing-field! UICommandGroupStandardEdit not bound
!missing-field! UICommandGroupSubstitutionOptions not bound
!missing-field! UICommandGroupSubstitutions not bound
!missing-field! UICommandGroupSubstitutionsPanel not bound
!missing-field! UICommandGroupText not bound
!missing-field! UICommandGroupTextColor not bound
!missing-field! UICommandGroupTextSize not bound
!missing-field! UICommandGroupTextStyle not bound
!missing-field! UICommandGroupTextStylePasteboard not bound
!missing-field! UICommandGroupTransformations not bound
!missing-field! UICommandGroupUndoRedo not bound
!missing-field! UICommandGroupView not bound
!missing-field! UICommandGroupWindow not bound
!missing-field! UICommandGroupWritingDirection not bound
!missing-protocol! UICommandBuilder not bound
!missing-protocol! UICommandGroupable not bound
!missing-selector! +UICommand::commandWithTitle:action:propertyList: not bound
!missing-selector! +UICommand::commandWithTitle:action:propertyList:alternates: not bound
!missing-selector! +UICommand::commandWithTitle:discoverabilityTitle:action:propertyList:supportedStates: not bound
!missing-selector! +UICommand::commandWithTitle:discoverabilityTitle:action:propertyList:supportedStates:alternates: not bound
!missing-selector! +UICommand::commandWithTitle:discoverabilityTitle:action:propertyList:supportedStates:input:modifierFlags: not bound
!missing-selector! +UICommand::commandWithTitle:discoverabilityTitle:action:propertyList:supportedStates:input:modifierFlags:alternates: not bound
!missing-selector! +UICommandGroup::groupWithTitle:discoverabilityTitle:identifier:options:children: not bound
!missing-selector! UICommandGroup::discoverabilityTitle not bound
!missing-selector! UICommandGroup::groupByReplacingChildren: not bound
!missing-selector! UICommandGroup::initWithCoder: not bound
!missing-selector! UICommandGroup::menuByReplacingChildren: not bound
!missing-type! UICommandGroup not bound
!missing-selector! +UICommandSystem::contextSystem not bound
!missing-selector! +UICommandSystem::mainSystem not bound
!missing-type! UICommandSystem not bound
!missing-selector! +UIKeyCommand::commandWithTitle:action:input:modifierFlags:propertyList: not bound
!missing-selector! +UIKeyCommand::commandWithTitle:action:input:modifierFlags:propertyList:alternates: not bound
!missing-selector! UICommand::__propertyList not bound
!missing-selector! UICommand::isEnabled not bound
!missing-selector! UICommand::supportedStates not bound
!missing-selector! UICommandValidation::isEnabled not bound
!missing-selector! UICommandValidation::preferredState not bound
!missing-selector! UICommandValidation::preferredTarget not bound
!missing-selector! UICommandValidation::preferredTitle not bound
!missing-selector! UICommandValidation::setEnabled: not bound
!missing-selector! UICommandValidation::setPreferredState: not bound
!missing-selector! UICommandValidation::setPreferredTarget: not bound
!missing-selector! UICommandValidation::setPreferredTitle: not bound
!missing-type! UICommandValidation not bound
!missing-selector! UIGestureRecognizer::initWithCoder: not bound
!missing-selector! UIKeyCommand::action not bound
!missing-selector! UIResponder::buildCommandsWithBuilder: not bound
!missing-selector! UIResponder::validationForCommand: not bound
!missing-type! UIMutableKeyCommand not bound
!missing-selector! UICommand::setEnabled: not bound
!missing-selector! UIKeyCommand::mutableCopy not bound

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

@ -1,3 +1,5 @@
!missing-selector! +UIImage::checkmarkImage not bound
!missing-selector! +UIImage::strokedCheckmarkImage not bound
!missing-selector! NSDiffableDataSourceSnapshot::appendItemsWithIdentifiers: not bound
!missing-selector! NSDiffableDataSourceSnapshot::appendItemsWithIdentifiers:intoSectionWithIdentifier: not bound
!missing-selector! NSDiffableDataSourceSnapshot::appendSectionsWithIdentifiers: not bound
@ -24,13 +26,16 @@
!missing-selector! NSDiffableDataSourceSnapshot::sectionIdentifierForSectionContainingItemIdentifier: not bound
!missing-selector! NSDiffableDataSourceSnapshot::sectionIdentifiers not bound
!missing-selector! UICollectionViewDiffableDataSource::applySnapshot:animatingDifferences: not bound
!missing-selector! UICollectionViewDiffableDataSource::applySnapshot:animatingDifferences:completion: not bound
!missing-selector! UICollectionViewDiffableDataSource::indexPathForItemIdentifier: not bound
!missing-selector! UICollectionViewDiffableDataSource::initWithCollectionView:cellProvider: not bound
!missing-selector! UICollectionViewDiffableDataSource::itemIdentifierForIndexPath: not bound
!missing-selector! UICollectionViewDiffableDataSource::setSupplementaryViewProvider: not bound
!missing-selector! UICollectionViewDiffableDataSource::snapshot not bound
!missing-selector! UICollectionViewDiffableDataSource::supplementaryViewProvider not bound
!missing-selector! UIDocumentBrowserViewController::recentDocumentsContentTypes not bound
!missing-selector! UITableViewDiffableDataSource::applySnapshot:animatingDifferences: not bound
!missing-selector! UITableViewDiffableDataSource::applySnapshot:animatingDifferences:completion: not bound
!missing-selector! UITableViewDiffableDataSource::defaultRowAnimation not bound
!missing-selector! UITableViewDiffableDataSource::indexPathForItemIdentifier: not bound
!missing-selector! UITableViewDiffableDataSource::initWithTableView:cellProvider: not bound

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

@ -3,6 +3,8 @@
!missing-field! kVTCompressionPropertyKey_AlphaChannelMode not bound
!missing-field! kVTCompressionPropertyKey_GammaLevel not bound
!missing-field! kVTCompressionPropertyKey_TargetQualityForAlpha not bound
!missing-field! kVTCompressionPropertyKey_UsingGPURegistryID not bound
!missing-field! kVTDecompressionPropertyKey_UsingGPURegistryID not bound
!missing-field! kVTPixelTransferPropertyKey_RealTime not bound
!missing-field! kVTVideoEncoderList_GPURegistryID not bound
!missing-field! kVTVideoEncoderList_InstanceLimit not bound
@ -12,6 +14,3 @@
!missing-field! kVTVideoEncoderList_SupportedSelectionProperties not bound
!missing-field! kVTVideoEncoderSpecification_PreferredEncoderGPURegistryID not bound
!missing-field! kVTVideoEncoderSpecification_RequiredEncoderGPURegistryID not bound
## appended from unclassified file
!missing-field! kVTCompressionPropertyKey_UsingGPURegistryID not bound
!missing-field! kVTDecompressionPropertyKey_UsingGPURegistryID not bound

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

@ -22,7 +22,6 @@
!missing-selector! VNCoreMLModel::setInputImageFeatureName: not bound
!missing-selector! VNDetectFaceLandmarksRequest::constellation not bound
!missing-selector! VNDetectFaceLandmarksRequest::setConstellation: not bound
!missing-selector! VNFaceLandmarkRegion2D::occlusionFlagsPerPoint not bound
!missing-selector! VNFaceLandmarkRegion2D::precisionEstimatesPerPoint not bound
!missing-selector! VNFaceObservation::faceCaptureQuality not bound
!missing-selector! VNFeaturePrintObservation::computeDistance:toFeaturePrintObservation:error: not bound

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

@ -0,0 +1,2 @@
!deprecated-attribute-missing! ADClient::addClientToSegments:replaceExisting: missing a [Deprecated] attribute
!deprecated-attribute-missing! ADInterstitialAdPresentationViewController missing a [Deprecated] attribute

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

@ -12,6 +12,7 @@
!missing-enum! AVCaptureColorSpace not bound
!missing-enum! AVSpeechSynthesisVoiceGender not bound
!missing-enum! AVSpeechSynthesisVoiceQuality not bound
!missing-field! AVAssetExportPresetAppleProRes4444LPCM not bound
!missing-field! AVAssetExportPresetHEVC1920x1080WithAlpha not bound
!missing-field! AVAssetExportPresetHEVC3840x2160WithAlpha not bound
!missing-field! AVAssetExportPresetHEVCHighestQualityWithAlpha not bound
@ -21,6 +22,7 @@
!missing-field! AVCaptureMaxAvailableTorchLevel not bound
!missing-field! AVCaptureSessionPreset1920x1080 not bound
!missing-field! AVCaptureSessionPreset3840x2160 not bound
!missing-field! AVContentKeyRequestRequiresValidationDataInSecureTokenKey not bound
!missing-field! AVContentKeySessionServerPlaybackContextOptionProtocolVersions not bound
!missing-field! AVContentKeySessionServerPlaybackContextOptionServerChallenge not bound
!missing-field! AVContentKeySystemAuthorizationToken not bound
@ -98,6 +100,7 @@
!missing-selector! AVAudioIONode::isVoiceProcessingEnabled not bound
!missing-selector! AVAudioIONode::setVoiceProcessingEnabled:error: not bound
!missing-selector! AVAudioSinkNode::initWithReceiverBlock: not bound
!missing-selector! AVAudioSourceNode::initWithFormat:renderBlock: not bound
!missing-selector! AVAudioSourceNode::initWithRenderBlock: not bound
!missing-selector! AVCaptureAudioDataOutput::recommendedAudioSettingsForAssetWriterWithOutputFileType: not bound
!missing-selector! AVCaptureDevice::activeColorSpace not bound
@ -133,6 +136,7 @@
!missing-selector! AVCaptureResolvedPhotoSettings::expectedPhotoCount not bound
!missing-selector! AVCaptureResolvedPhotoSettings::photoDimensions not bound
!missing-selector! AVCaptureResolvedPhotoSettings::uniqueID not bound
!missing-selector! AVCaptureSession::connections not bound
!missing-selector! AVCaptureVideoDataOutput::availableVideoCodecTypesForAssetWriterWithOutputFileType: not bound
!missing-selector! AVCaptureVideoDataOutput::recommendedVideoSettingsForAssetWriterWithOutputFileType: not bound
!missing-selector! AVCaptureVideoDataOutput::recommendedVideoSettingsForVideoCodecType:assetWriterOutputFileType: not bound
@ -151,7 +155,9 @@
!missing-selector! AVMetadataMachineReadableCodeObject::corners not bound
!missing-selector! AVMetadataMachineReadableCodeObject::descriptor not bound
!missing-selector! AVMetadataMachineReadableCodeObject::stringValue not bound
!missing-selector! AVMutableCompositionTrack::isEnabled not bound
!missing-selector! AVMutableCompositionTrack::replaceFormatDescription:withFormatDescription: not bound
!missing-selector! AVMutableCompositionTrack::setEnabled: not bound
!missing-selector! AVPlayerItem::automaticallyPreservesTimeOffsetFromLive not bound
!missing-selector! AVPlayerItem::configuredTimeOffsetFromLive not bound
!missing-selector! AVPlayerItem::isAudioSpatializationAllowed not bound
@ -217,11 +223,3 @@
!missing-type! AVSpeechSynthesizer not bound
!missing-type! AVSpeechUtterance not bound
!missing-type! AVVideoCompositionRenderHint not bound
## appended from unclassified file
!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

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

@ -17,6 +17,8 @@
!deprecated-attribute-missing! NSWorkspace::openURLs:withApplicationAtURL:options:configuration:error: missing a [Deprecated] attribute
!missing-enum! NSCollectionLayoutSectionOrthogonalScrollingBehavior not bound
!missing-enum! NSDirectionalRectEdge not bound
!missing-enum! NSPickerTouchBarItemControlRepresentation not bound
!missing-enum! NSPickerTouchBarItemSelectionMode not bound
!missing-enum! NSRectAlignment not bound
!missing-enum! NSTextInputTraitType not bound
!missing-enum! NSTextScalingType not bound
@ -40,6 +42,9 @@
!missing-protocol-conformance! NSTextList should conform to NSSecureCoding
!missing-selector! +NSBindingSelectionMarker::defaultPlaceholderForMarker:onClass:withBinding: not bound
!missing-selector! +NSBindingSelectionMarker::setDefaultPlaceholder:forMarker:onClass:withBinding: not bound
!missing-selector! +NSButtonTouchBarItem::buttonTouchBarItemWithIdentifier:image:target:action: not bound
!missing-selector! +NSButtonTouchBarItem::buttonTouchBarItemWithIdentifier:title:image:target:action: not bound
!missing-selector! +NSButtonTouchBarItem::buttonTouchBarItemWithIdentifier:title:target:action: not bound
!missing-selector! +NSCollectionLayoutAnchor::layoutAnchorWithEdges: not bound
!missing-selector! +NSCollectionLayoutAnchor::layoutAnchorWithEdges:absoluteOffset: not bound
!missing-selector! +NSCollectionLayoutAnchor::layoutAnchorWithEdges:fractionalOffset: not bound
@ -70,11 +75,29 @@
!missing-selector! +NSColor::systemIndigoColor not bound
!missing-selector! +NSColor::systemTealColor not bound
!missing-selector! +NSFont::monospacedSystemFontOfSize:weight: not bound
!missing-selector! +NSPickerTouchBarItem::pickerTouchBarItemWithIdentifier:images:selectionMode:target:action: not bound
!missing-selector! +NSPickerTouchBarItem::pickerTouchBarItemWithIdentifier:labels:selectionMode:target:action: not bound
!missing-selector! +NSStepperTouchBarItem::stepperTouchBarItemWithIdentifier:drawingHandler: not bound
!missing-selector! +NSStepperTouchBarItem::stepperTouchBarItemWithIdentifier:formatter: not bound
!missing-selector! +NSToolbarItemGroup::groupWithItemIdentifier:images:selectionMode:labels:target:action: not bound
!missing-selector! +NSToolbarItemGroup::groupWithItemIdentifier:titles:selectionMode:labels:target:action: not bound
!missing-selector! +NSTouchBar::isAutomaticCustomizeTouchBarMenuItemEnabled not bound
!missing-selector! +NSTouchBar::setAutomaticCustomizeTouchBarMenuItemEnabled: not bound
!missing-selector! +NSWorkspaceOpenConfiguration::configuration not bound
!missing-selector! NSButtonTouchBarItem::action not bound
!missing-selector! NSButtonTouchBarItem::bezelColor not bound
!missing-selector! NSButtonTouchBarItem::customizationLabel not bound
!missing-selector! NSButtonTouchBarItem::image not bound
!missing-selector! NSButtonTouchBarItem::isEnabled not bound
!missing-selector! NSButtonTouchBarItem::setAction: not bound
!missing-selector! NSButtonTouchBarItem::setBezelColor: not bound
!missing-selector! NSButtonTouchBarItem::setCustomizationLabel: not bound
!missing-selector! NSButtonTouchBarItem::setEnabled: not bound
!missing-selector! NSButtonTouchBarItem::setImage: not bound
!missing-selector! NSButtonTouchBarItem::setTarget: not bound
!missing-selector! NSButtonTouchBarItem::setTitle: not bound
!missing-selector! NSButtonTouchBarItem::target not bound
!missing-selector! NSButtonTouchBarItem::title not bound
!missing-selector! NSCollectionLayoutAnchor::edges not bound
!missing-selector! NSCollectionLayoutAnchor::isAbsoluteOffset not bound
!missing-selector! NSCollectionLayoutAnchor::isFractionalOffset not bound
@ -182,8 +205,56 @@
!missing-selector! NSDiffableDataSourceSnapshot::sectionIdentifiers not bound
!missing-selector! NSEvent::charactersByApplyingModifiers: not bound
!missing-selector! NSFontDescriptor::fontDescriptorWithDesign: not bound
!missing-selector! NSImageNSImage::cacheDepthMatchesImageDepth not bound
!missing-selector! NSImageNSImage::compositeToPoint:fromRect:operation: not bound
!missing-selector! NSImageNSImage::compositeToPoint:fromRect:operation:fraction: not bound
!missing-selector! NSImageNSImage::compositeToPoint:operation: not bound
!missing-selector! NSImageNSImage::compositeToPoint:operation:fraction: not bound
!missing-selector! NSImageNSImage::dissolveToPoint:fraction: not bound
!missing-selector! NSImageNSImage::dissolveToPoint:fromRect:fraction: not bound
!missing-selector! NSImageNSImage::initWithIconRef: not bound
!missing-selector! NSImageNSImage::isCachedSeparately not bound
!missing-selector! NSImageNSImage::isDataRetained not bound
!missing-selector! NSImageNSImage::lockFocusOnRepresentation: not bound
!missing-selector! NSImageNSImage::scalesWhenResized not bound
!missing-selector! NSImageNSImage::setCacheDepthMatchesImageDepth: not bound
!missing-selector! NSImageNSImage::setCachedSeparately: not bound
!missing-selector! NSImageNSImage::setDataRetained: not bound
!missing-selector! NSImageNSImage::setScalesWhenResized: not bound
!missing-selector! NSMenuToolbarItem::menu not bound
!missing-selector! NSMenuToolbarItem::setMenu: not bound
!missing-selector! NSMenuToolbarItem::setShowsIndicator: not bound
!missing-selector! NSMenuToolbarItem::showsIndicator not bound
!missing-selector! NSMovie::init not bound
!missing-selector! NSMovie::initWithCoder: not bound
!missing-selector! NSPickerTouchBarItem::action not bound
!missing-selector! NSPickerTouchBarItem::collapsedRepresentationImage not bound
!missing-selector! NSPickerTouchBarItem::collapsedRepresentationLabel not bound
!missing-selector! NSPickerTouchBarItem::controlRepresentation not bound
!missing-selector! NSPickerTouchBarItem::customizationLabel not bound
!missing-selector! NSPickerTouchBarItem::imageAtIndex: not bound
!missing-selector! NSPickerTouchBarItem::isEnabled not bound
!missing-selector! NSPickerTouchBarItem::isEnabledAtIndex: not bound
!missing-selector! NSPickerTouchBarItem::labelAtIndex: not bound
!missing-selector! NSPickerTouchBarItem::numberOfOptions not bound
!missing-selector! NSPickerTouchBarItem::selectedIndex not bound
!missing-selector! NSPickerTouchBarItem::selectionColor not bound
!missing-selector! NSPickerTouchBarItem::selectionMode not bound
!missing-selector! NSPickerTouchBarItem::setAction: not bound
!missing-selector! NSPickerTouchBarItem::setCollapsedRepresentationImage: not bound
!missing-selector! NSPickerTouchBarItem::setCollapsedRepresentationLabel: not bound
!missing-selector! NSPickerTouchBarItem::setControlRepresentation: not bound
!missing-selector! NSPickerTouchBarItem::setCustomizationLabel: not bound
!missing-selector! NSPickerTouchBarItem::setEnabled: not bound
!missing-selector! NSPickerTouchBarItem::setEnabled:atIndex: not bound
!missing-selector! NSPickerTouchBarItem::setImage:atIndex: not bound
!missing-selector! NSPickerTouchBarItem::setLabel:atIndex: not bound
!missing-selector! NSPickerTouchBarItem::setNumberOfOptions: not bound
!missing-selector! NSPickerTouchBarItem::setSelectedIndex: not bound
!missing-selector! NSPickerTouchBarItem::setSelectionColor: not bound
!missing-selector! NSPickerTouchBarItem::setSelectionMode: not bound
!missing-selector! NSPickerTouchBarItem::setTarget: not bound
!missing-selector! NSPickerTouchBarItem::target not bound
!missing-selector! NSResponder::changeModeWithEvent: not bound
!missing-selector! NSScreen::localizedName not bound
!missing-selector! NSScreenNSScreen::maximumExtendedDynamicRangeColorComponentValue not bound
@ -195,6 +266,20 @@
!missing-selector! NSSliderTouchBarItem::setDoubleValue: not bound
!missing-selector! NSSliderTouchBarItem::setMaximumSliderWidth: not bound
!missing-selector! NSSliderTouchBarItem::setMinimumSliderWidth: 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-selector! NSStoryboard::instantiateControllerWithIdentifier:creator: not bound
!missing-selector! NSStoryboard::instantiateInitialControllerWithCreator: not bound
!missing-selector! NSSwitch::setState: not bound
@ -233,6 +318,10 @@
!missing-selector! NSToolbarItemGroup::setSelected:atIndex: not bound
!missing-selector! NSToolbarItemGroup::setSelectedIndex: not bound
!missing-selector! NSToolbarItemGroup::setSelectionMode: not bound
!missing-selector! NSView::isHorizontalContentSizeConstraintActive not bound
!missing-selector! NSView::isVerticalContentSizeConstraintActive not bound
!missing-selector! NSView::setHorizontalContentSizeConstraintActive: not bound
!missing-selector! NSView::setVerticalContentSizeConstraintActive: not bound
!missing-selector! NSWorkspace::openApplicationAtURL:configuration:completionHandler: not bound
!missing-selector! NSWorkspace::openURL:configuration:completionHandler: not bound
!missing-selector! NSWorkspace::openURLs:withApplicationAtURL:configuration:completionHandler: not bound
@ -260,6 +349,7 @@
!missing-selector! NSWorkspaceOpenConfiguration::setHidesOthers: not bound
!missing-selector! NSWorkspaceOpenConfiguration::setPromptsUserIfNeeded: not bound
!missing-selector! NSWorkspaceOpenConfiguration::setRequiresUniversalLinks: not bound
!missing-type! NSButtonTouchBarItem not bound
!missing-type! NSCollectionLayoutAnchor not bound
!missing-type! NSCollectionLayoutBoundarySupplementaryItem not bound
!missing-type! NSCollectionLayoutDecorationItem not bound
@ -277,91 +367,9 @@
!missing-type! NSCollectionViewDiffableDataSource not bound
!missing-type! NSColorSampler not bound
!missing-type! NSDiffableDataSourceSnapshot not bound
!missing-type! NSMenuToolbarItem not bound
!missing-type! NSPickerTouchBarItem not bound
!missing-type! NSStepperTouchBarItem not bound
!missing-type! NSSwitch not bound
!missing-type! NSTextCheckingController not bound
!missing-type! NSWorkspaceOpenConfiguration not bound
## appended from unclassified file
!missing-enum! NSPickerTouchBarItemControlRepresentation not bound
!missing-enum! NSPickerTouchBarItemSelectionMode not bound
!missing-selector! +NSButtonTouchBarItem::buttonTouchBarItemWithIdentifier:image:target:action: not bound
!missing-selector! +NSButtonTouchBarItem::buttonTouchBarItemWithIdentifier:title:image:target:action: not bound
!missing-selector! +NSButtonTouchBarItem::buttonTouchBarItemWithIdentifier:title:target:action: not bound
!missing-selector! +NSPickerTouchBarItem::pickerTouchBarItemWithIdentifier:images:selectionMode:target:action: not bound
!missing-selector! +NSPickerTouchBarItem::pickerTouchBarItemWithIdentifier:labels:selectionMode:target:action: not bound
!missing-selector! NSButtonTouchBarItem::action not bound
!missing-selector! NSButtonTouchBarItem::bezelColor not bound
!missing-selector! NSButtonTouchBarItem::customizationLabel not bound
!missing-selector! NSButtonTouchBarItem::image not bound
!missing-selector! NSButtonTouchBarItem::setAction: not bound
!missing-selector! NSButtonTouchBarItem::setBezelColor: not bound
!missing-selector! NSButtonTouchBarItem::setCustomizationLabel: not bound
!missing-selector! NSButtonTouchBarItem::setImage: not bound
!missing-selector! NSButtonTouchBarItem::setTarget: not bound
!missing-selector! NSButtonTouchBarItem::setTitle: not bound
!missing-selector! NSButtonTouchBarItem::target not bound
!missing-selector! NSButtonTouchBarItem::title not bound
!missing-selector! NSImageNSImage::cacheDepthMatchesImageDepth not bound
!missing-selector! NSImageNSImage::compositeToPoint:fromRect:operation: not bound
!missing-selector! NSImageNSImage::compositeToPoint:fromRect:operation:fraction: not bound
!missing-selector! NSImageNSImage::compositeToPoint:operation: not bound
!missing-selector! NSImageNSImage::compositeToPoint:operation:fraction: not bound
!missing-selector! NSImageNSImage::dissolveToPoint:fraction: not bound
!missing-selector! NSImageNSImage::dissolveToPoint:fromRect:fraction: not bound
!missing-selector! NSImageNSImage::initWithIconRef: not bound
!missing-selector! NSImageNSImage::isCachedSeparately not bound
!missing-selector! NSImageNSImage::isDataRetained not bound
!missing-selector! NSImageNSImage::lockFocusOnRepresentation: not bound
!missing-selector! NSImageNSImage::scalesWhenResized not bound
!missing-selector! NSImageNSImage::setCacheDepthMatchesImageDepth: not bound
!missing-selector! NSImageNSImage::setCachedSeparately: not bound
!missing-selector! NSImageNSImage::setDataRetained: not bound
!missing-selector! NSImageNSImage::setScalesWhenResized: not bound
!missing-selector! NSMenuToolbarItem::menu not bound
!missing-selector! NSMenuToolbarItem::setMenu: not bound
!missing-selector! NSMenuToolbarItem::setShowsIndicator: not bound
!missing-selector! NSMenuToolbarItem::showsIndicator not bound
!missing-selector! NSPickerTouchBarItem::action not bound
!missing-selector! NSPickerTouchBarItem::collapsedRepresentationImage not bound
!missing-selector! NSPickerTouchBarItem::collapsedRepresentationLabel not bound
!missing-selector! NSPickerTouchBarItem::controlRepresentation not bound
!missing-selector! NSPickerTouchBarItem::customizationLabel not bound
!missing-selector! NSPickerTouchBarItem::imageAtIndex: not bound
!missing-selector! NSPickerTouchBarItem::labelAtIndex: not bound
!missing-selector! NSPickerTouchBarItem::numberOfOptions not bound
!missing-selector! NSPickerTouchBarItem::selectedIndex not bound
!missing-selector! NSPickerTouchBarItem::selectionColor not bound
!missing-selector! NSPickerTouchBarItem::selectionMode not bound
!missing-selector! NSPickerTouchBarItem::setAction: not bound
!missing-selector! NSPickerTouchBarItem::setCollapsedRepresentationImage: not bound
!missing-selector! NSPickerTouchBarItem::setCollapsedRepresentationLabel: not bound
!missing-selector! NSPickerTouchBarItem::setControlRepresentation: not bound
!missing-selector! NSPickerTouchBarItem::setCustomizationLabel: not bound
!missing-selector! NSPickerTouchBarItem::setImage:atIndex: not bound
!missing-selector! NSPickerTouchBarItem::setLabel:atIndex: not bound
!missing-selector! NSPickerTouchBarItem::setNumberOfOptions: not bound
!missing-selector! NSPickerTouchBarItem::setSelectedIndex: not bound
!missing-selector! NSPickerTouchBarItem::setSelectionColor: not bound
!missing-selector! NSPickerTouchBarItem::setSelectionMode: not bound
!missing-selector! NSPickerTouchBarItem::setTarget: not bound
!missing-selector! NSPickerTouchBarItem::target not bound
!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

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

@ -0,0 +1 @@
!missing-protocol-conformance! ASAuthorizationAppleIDButton should conform to NSAccessibilityButton

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

@ -83,6 +83,8 @@
!missing-field! CNLabelContactRelationGrandchild not bound
!missing-field! CNLabelContactRelationGrandchildOrSiblingsChild not bound
!missing-field! CNLabelContactRelationGranddaughter not bound
!missing-field! CNLabelContactRelationGranddaughterDaughtersDaughter not bound
!missing-field! CNLabelContactRelationGranddaughterSonsDaughter not bound
!missing-field! CNLabelContactRelationGrandfather not bound
!missing-field! CNLabelContactRelationGrandfatherFathersFather not bound
!missing-field! CNLabelContactRelationGrandfatherMothersFather not bound
@ -97,6 +99,8 @@
!missing-field! CNLabelContactRelationGrandnieceSistersGranddaughter not bound
!missing-field! CNLabelContactRelationGrandparent not bound
!missing-field! CNLabelContactRelationGrandson not bound
!missing-field! CNLabelContactRelationGrandsonDaughtersSon not bound
!missing-field! CNLabelContactRelationGrandsonSonsSon not bound
!missing-field! CNLabelContactRelationGranduncle not bound
!missing-field! CNLabelContactRelationGreatGrandchild not bound
!missing-field! CNLabelContactRelationGreatGrandchildOrSiblingsGrandchild not bound

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

@ -1,7 +1,10 @@
!missing-enum! NSBatchInsertRequestResultType not bound
!missing-enum! NSPersistentCloudKitContainerSchemaInitializationOptions not bound
!missing-field! NSPersistentHistoryTokenKey not bound
!missing-field! NSPersistentStoreRemoteChangeNotification not bound
!missing-field! NSPersistentStoreRemoteChangeNotificationPostOptionKey not bound
!missing-field! NSPersistentStoreURLKey not bound
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:objects: not bound
!missing-selector! +NSPersistentHistoryChange::entityDescription not bound
!missing-selector! +NSPersistentHistoryChange::entityDescriptionWithContext: not bound
!missing-selector! +NSPersistentHistoryChange::fetchRequest not bound
@ -11,34 +14,10 @@
!missing-selector! +NSPersistentHistoryTransaction::fetchRequest not bound
!missing-selector! NSAttributeDescription::preservesValueInHistoryOnDeletion not bound
!missing-selector! NSAttributeDescription::setPreservesValueInHistoryOnDeletion: not bound
!missing-selector! NSDerivedAttributeDescription::derivationExpression not bound
!missing-selector! NSDerivedAttributeDescription::setDerivationExpression: not bound
!missing-selector! NSPersistentCloudKitContainer::recordForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainer::recordsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::containerIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerOptions::initWithContainerIdentifier: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::setShouldInitializeSchema: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::shouldInitializeSchema not bound
!missing-selector! NSPersistentHistoryChangeRequest::fetchRequest not bound
!missing-selector! NSPersistentHistoryChangeRequest::setFetchRequest: not bound
!missing-selector! NSPersistentStoreDescription::cloudKitContainerOptions not bound
!missing-selector! NSPersistentStoreDescription::setCloudKitContainerOptions: not bound
!missing-type! NSDerivedAttributeDescription not bound
!missing-type! NSPersistentCloudKitContainer not bound
!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
@ -46,5 +25,22 @@
!missing-selector! NSBatchInsertRequest::setResultType: not bound
!missing-selector! NSBatchInsertResult::result not bound
!missing-selector! NSBatchInsertResult::resultType not bound
!missing-selector! NSDerivedAttributeDescription::derivationExpression not bound
!missing-selector! NSDerivedAttributeDescription::setDerivationExpression: not bound
!missing-selector! NSPersistentCloudKitContainer::initializeCloudKitSchemaWithOptions:error: not bound
!missing-selector! NSPersistentCloudKitContainer::recordForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainer::recordsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::containerIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerOptions::initWithContainerIdentifier: not bound
!missing-selector! NSPersistentHistoryChangeRequest::fetchRequest not bound
!missing-selector! NSPersistentHistoryChangeRequest::setFetchRequest: not bound
!missing-selector! NSPersistentStoreCoordinator::currentPersistentHistoryTokenFromStores: not bound
!missing-selector! NSPersistentStoreDescription::cloudKitContainerOptions not bound
!missing-selector! NSPersistentStoreDescription::setCloudKitContainerOptions: not bound
!missing-type! NSBatchInsertRequest not bound
!missing-type! NSBatchInsertResult not bound
!missing-type! NSDerivedAttributeDescription not bound
!missing-type! NSPersistentCloudKitContainer not bound
!missing-type! NSPersistentCloudKitContainerOptions not bound

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

@ -1,3 +1,4 @@
!missing-enum! CHHapticEngineFinishedAction not bound
!missing-enum! CHHapticEngineStoppedReason not bound
!missing-enum! CHHapticErrorCode not bound
!missing-field! CHHapticDynamicParameterIDAudioAttackTimeControl not bound
@ -55,10 +56,19 @@
!missing-selector! CHHapticEngine::currentTime not bound
!missing-selector! CHHapticEngine::initAndReturnError: not bound
!missing-selector! CHHapticEngine::initWithAudioSession:error: 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::playPatternFromData:error: not bound
!missing-selector! CHHapticEngine::playPatternFromURL:error: not bound
!missing-selector! CHHapticEngine::playsHapticsOnly not bound
!missing-selector! CHHapticEngine::registerAudioResource:options:error: not bound
!missing-selector! CHHapticEngine::resetHandler 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
!missing-selector! CHHapticEngine::setResetHandler: not bound
!missing-selector! CHHapticEngine::setStoppedHandler: not bound
!missing-selector! CHHapticEngine::startAndReturnError: not bound
@ -102,14 +112,3 @@
!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

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

@ -3,6 +3,11 @@
!missing-field! kCIImageAuxiliarySemanticSegmentationHairMatte not bound
!missing-field! kCIImageAuxiliarySemanticSegmentationSkinMatte not bound
!missing-field! kCIImageAuxiliarySemanticSegmentationTeethMatte not bound
!missing-field! kCIImageRepresentationAVSemanticSegmentationMattes not bound
!missing-field! kCIImageRepresentationSemanticSegmentationHairMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationSkinMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationTeethMatteImage not bound
!missing-field! kCIInputEnableEDRModeKey not bound
!missing-protocol! CIAccordionFoldTransition not bound
!missing-protocol! CIAffineClamp not bound
!missing-protocol! CIAffineTile not bound
@ -55,9 +60,11 @@
!missing-protocol! CIFalseColor not bound
!missing-protocol! CIFilter not bound
!missing-protocol! CIFlashTransition not bound
!missing-protocol! CIFourCoordinateGeometryFilter not bound
!missing-protocol! CIFourfoldReflectedTile not bound
!missing-protocol! CIFourfoldRotatedTile not bound
!missing-protocol! CIFourfoldTranslatedTile not bound
!missing-protocol! CIGaborGradients not bound
!missing-protocol! CIGammaAdjust not bound
!missing-protocol! CIGaussianBlur not bound
!missing-protocol! CIGaussianGradient not bound
@ -70,6 +77,9 @@
!missing-protocol! CIHueAdjust not bound
!missing-protocol! CIHueSaturationValueGradient not bound
!missing-protocol! CIKaleidoscope not bound
!missing-protocol! CIKeystoneCorrectionCombined not bound
!missing-protocol! CIKeystoneCorrectionHorizontal not bound
!missing-protocol! CIKeystoneCorrectionVertical not bound
!missing-protocol! CILabDeltaE not bound
!missing-protocol! CILanczosScaleTransform not bound
!missing-protocol! CILenticularHaloGenerator not bound
@ -100,6 +110,7 @@
!missing-protocol! CIParallelogramTile not bound
!missing-protocol! CIPDF417BarcodeGenerator not bound
!missing-protocol! CIPerspectiveCorrection not bound
!missing-protocol! CIPerspectiveRotate not bound
!missing-protocol! CIPerspectiveTile not bound
!missing-protocol! CIPerspectiveTransform not bound
!missing-protocol! CIPerspectiveTransformWithExtent not bound
@ -110,6 +121,7 @@
!missing-protocol! CIRadialGradient not bound
!missing-protocol! CIRandomGenerator not bound
!missing-protocol! CIRippleTransition not bound
!missing-protocol! CIRoundedRectangleGenerator not bound
!missing-protocol! CISaliencyMap not bound
!missing-protocol! CISepiaTone not bound
!missing-protocol! CIShadedMaterial not bound
@ -208,6 +220,7 @@
!missing-selector! +CIFilter::fourfoldReflectedTileFilter not bound
!missing-selector! +CIFilter::fourfoldRotatedTileFilter not bound
!missing-selector! +CIFilter::fourfoldTranslatedTileFilter not bound
!missing-selector! +CIFilter::gaborGradientsFilter not bound
!missing-selector! +CIFilter::gammaAdjustFilter not bound
!missing-selector! +CIFilter::gaussianBlurFilter not bound
!missing-selector! +CIFilter::gaussianGradientFilter not bound
@ -222,6 +235,9 @@
!missing-selector! +CIFilter::hueBlendModeFilter not bound
!missing-selector! +CIFilter::hueSaturationValueGradientFilter not bound
!missing-selector! +CIFilter::kaleidoscopeFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionCombinedFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionHorizontalFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionVerticalFilter not bound
!missing-selector! +CIFilter::LabDeltaE not bound
!missing-selector! +CIFilter::lanczosScaleTransformFilter not bound
!missing-selector! +CIFilter::lenticularHaloGeneratorFilter not bound
@ -261,6 +277,7 @@
!missing-selector! +CIFilter::parallelogramTileFilter not bound
!missing-selector! +CIFilter::PDF417BarcodeGenerator not bound
!missing-selector! +CIFilter::perspectiveCorrectionFilter not bound
!missing-selector! +CIFilter::perspectiveRotateFilter not bound
!missing-selector! +CIFilter::perspectiveTileFilter not bound
!missing-selector! +CIFilter::perspectiveTransformFilter not bound
!missing-selector! +CIFilter::perspectiveTransformWithExtentFilter not bound
@ -279,6 +296,7 @@
!missing-selector! +CIFilter::radialGradientFilter not bound
!missing-selector! +CIFilter::randomGeneratorFilter not bound
!missing-selector! +CIFilter::rippleTransitionFilter not bound
!missing-selector! +CIFilter::roundedRectangleGeneratorFilter not bound
!missing-selector! +CIFilter::saliencyMapFilter not bound
!missing-selector! +CIFilter::saturationBlendModeFilter not bound
!missing-selector! +CIFilter::screenBlendModeFilter not bound
@ -333,28 +351,8 @@
!missing-selector! +CIPlugIn::loadNonExecutablePlugIn: not bound
!missing-selector! CIBlendKernel::applyWithForeground:background:colorSpace: not bound
!missing-selector! CIContext::depthBlurEffectFilterForImage:disparityImage:portraitEffectsMatte:hairSemanticSegmentation:orientation:options: not bound
!missing-selector! CIImage::imageByApplyingTransform:highQualityDownsample: not bound
!missing-selector! CIImage::initWithCGImageSource:index:options: not bound
!missing-selector! CIImage::initWithSemanticSegmentationMatte: not bound
!missing-selector! CIImage::initWithSemanticSegmentationMatte:options: not bound
!missing-selector! CIImage::semanticSegmentationMatte not bound
## appended from unclassified file
!missing-field! kCIImageRepresentationAVSemanticSegmentationMattes not bound
!missing-field! kCIImageRepresentationSemanticSegmentationHairMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationSkinMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationTeethMatteImage not bound
!missing-protocol! CIGaborGradients not bound
!missing-protocol! CIKeystoneCorrectionCombined not bound
!missing-protocol! CIKeystoneCorrectionHorizontal not bound
!missing-protocol! CIKeystoneCorrectionVertical not bound
!missing-protocol! CIPerspectiveRotate not bound
!missing-selector! +CIFilter::gaborGradientsFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionCombinedFilter not bound
!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

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

@ -1,6 +1,5 @@
!deprecated-attribute-missing! CLLocationManager::deferredLocationUpdatesAvailable missing a [Deprecated] attribute
!missing-selector! CLFloor::level not bound
!missing-selector! CLLocation::floor not bound
!missing-selector! CLLocationManager::requestAlwaysAuthorization not bound
!missing-type! CLFloor not bound
## appended from unclassified file
!deprecated-attribute-missing! CLLocationManager::deferredLocationUpdatesAvailable missing a [Deprecated] attribute

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

@ -19,20 +19,25 @@
!missing-selector! +MLParameterKey::linkedModelSearchPath not bound
!missing-selector! +MLParameterKey::miniBatchSize not bound
!missing-selector! +MLParameterKey::momentum not bound
!missing-selector! +MLParameterKey::removeExamples not bound
!missing-selector! +MLParameterKey::seed not bound
!missing-selector! +MLParameterKey::shuffle not bound
!missing-selector! +MLUpdateTask::updateTaskForModelAtURL:trainingData:configuration:completionHandler:error: not bound
!missing-selector! +MLUpdateTask::updateTaskForModelAtURL:trainingData:configuration:progressHandlers:error: not bound
!missing-selector! MLKey::name not bound
!missing-selector! MLKey::scope not bound
!missing-selector! MLModel::predictionsFromBatch:error: not bound
!missing-selector! MLModelConfiguration::allowLowPrecisionAccumulationOnGPU not bound
!missing-selector! MLModelConfiguration::modelParameters not bound
!missing-selector! MLModelConfiguration::parameters not bound
!missing-selector! MLModelConfiguration::preferredMetalDevice not bound
!missing-selector! MLModelConfiguration::setAllowLowPrecisionAccumulationOnGPU: not bound
!missing-selector! MLModelConfiguration::setModelParameters: not bound
!missing-selector! MLModelConfiguration::setParameters: not bound
!missing-selector! MLModelConfiguration::setPreferredMetalDevice: not bound
!missing-selector! MLModelConfiguration::setUpdateParameters: not bound
!missing-selector! MLModelConfiguration::updateParameters not bound
!missing-selector! MLModelDescription::isUpdatable not bound
!missing-selector! MLModelDescription::parameterDescriptionsByKey not bound
!missing-selector! MLModelDescription::trainingInputDescriptionsByName not bound
!missing-selector! MLNumericConstraint::enumeratedNumbers not bound
!missing-selector! MLNumericConstraint::maxNumber not bound
@ -40,6 +45,7 @@
!missing-selector! MLParameterDescription::defaultValue not bound
!missing-selector! MLParameterDescription::key not bound
!missing-selector! MLParameterDescription::numericConstraint not bound
!missing-selector! MLParameterKey::scopedTo: not bound
!missing-selector! MLTask::cancel not bound
!missing-selector! MLTask::error not bound
!missing-selector! MLTask::resume not bound
@ -61,11 +67,3 @@
!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

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

@ -0,0 +1,2 @@
!missing-pinvoke! CMTimebaseSetMasterClock is not bound
!missing-pinvoke! CMTimebaseSetMasterTimebase is not bound

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

@ -0,0 +1,4 @@
!missing-field! kCTFontFeatureSampleTextKey not bound
!missing-field! kCTFontFeatureTooltipTextKey not bound
!missing-pinvoke! CTFontCreateForStringWithLanguage is not bound
!missing-pinvoke! CTGlyphInfoGetGlyph is not bound

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

@ -22,6 +22,7 @@
!missing-selector! NSFileProviderExtension::importDidFinishWithCompletionHandler: not bound
!missing-selector! NSFileProviderExtension::itemChanged:baseVersion:changedFields:contents:completionHandler: not bound
!missing-selector! NSFileProviderExtension::materializedItemsDidChangeWithCompletionHandler: not bound
!missing-selector! NSFileProviderExtension::performActionWithIdentifier:onItemsWithIdentifiers:completionHandler: not bound
!missing-selector! NSFileProviderItemVersion::contentVersion not bound
!missing-selector! NSFileProviderItemVersion::initWithContentVersion:metadataVersion: not bound
!missing-selector! NSFileProviderItemVersion::metadataVersion not bound
@ -36,5 +37,3 @@
!missing-type! NSFileProviderItemVersion not bound
!missing-type! NSFileProviderRequest not bound
!missing-type! NSFileProviderSearchQuery not bound
## appended from unclassified file
!missing-selector! NSFileProviderExtension::performActionWithIdentifier:onItemsWithIdentifiers:completionHandler: not bound

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

@ -9,6 +9,5 @@
!missing-selector! GKMatchRequest::setTournamentForInvitePool: not bound
!missing-selector! GKMatchRequest::tournamentForInvitePool not bound
!missing-selector! GKPlayer::gamePlayerID not bound
!missing-selector! GKPlayer::teamPlayerID not bound
## appended from unclassified file
!missing-selector! GKPlayer::scopedIDsArePersistent not bound
!missing-selector! GKPlayer::teamPlayerID not bound

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

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

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

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

@ -15,7 +15,6 @@
!missing-selector! OSLogEntrySignpost::signpostIdentifier not bound
!missing-selector! OSLogEntrySignpost::signpostName not bound
!missing-selector! OSLogEntrySignpost::signpostType not bound
!missing-selector! OSLogEnumerator::currentPosition not bound
!missing-selector! OSLogMessageComponent::argumentCategory not bound
!missing-selector! OSLogMessageComponent::argumentDataValue not bound
!missing-selector! OSLogMessageComponent::argumentDoubleValue not bound
@ -27,7 +26,6 @@
!missing-selector! OSLogMessageComponent::placeholder not bound
!missing-selector! OSLogStore::entriesEnumeratorAndReturnError: not bound
!missing-selector! OSLogStore::entriesEnumeratorWithOptions:position:predicate:error: not bound
!missing-selector! OSLogStore::positionsWithDate: not bound
!missing-selector! OSLogStore::positionWithDate: not bound
!missing-selector! OSLogStore::positionWithTimeIntervalSinceEnd: not bound
!missing-selector! OSLogStore::positionWithTimeIntervalSinceLatestBoot: not bound

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

@ -4,10 +4,10 @@
!missing-enum! MTLCaptureDestination not bound
!missing-enum! MTLCaptureError not bound
!missing-enum! MTLCounterSampleBufferError not bound
!missing-enum! MTLDeviceLocation not bound
!missing-enum! MTLGPUFamily not bound
!missing-enum! MTLHazardTrackingMode not bound
!missing-enum! MTLHeapType not bound
!missing-enum! MTLSoftwareVersion not bound
!missing-enum! MTLTextureSwizzle not bound
!missing-field! MTLCaptureErrorDomain not bound
!missing-field! MTLCommonCounterClipperInvocations not bound
@ -36,14 +36,22 @@
!missing-protocol-member! MTLBlitCommandEncoder::copyFromTexture:toTexture: not found
!missing-protocol-member! MTLBlitCommandEncoder::resolveCounters:inRange:destinationBuffer:destinationOffset: not found
!missing-protocol-member! MTLBlitCommandEncoder::sampleCountersInBuffer:atSampleIndex:withBarrier: not found
!missing-protocol-member! MTLBuffer::newRemoteBufferViewForDevice: not found
!missing-protocol-member! MTLBuffer::remoteStorageBuffer not found
!missing-protocol-member! MTLComputeCommandEncoder::sampleCountersInBuffer:atSampleIndex:withBarrier: not found
!missing-protocol-member! MTLDevice::areBarycentricCoordsSupported not found
!missing-protocol-member! MTLDevice::counterSets not found
!missing-protocol-member! MTLDevice::hasUnifiedMemory not found
!missing-protocol-member! MTLDevice::location not found
!missing-protocol-member! MTLDevice::locationNumber not found
!missing-protocol-member! MTLDevice::maxTransferRate not found
!missing-protocol-member! MTLDevice::newCounterSampleBufferWithDescriptor:error: not found
!missing-protocol-member! MTLDevice::peerCount not found
!missing-protocol-member! MTLDevice::peerGroupID not found
!missing-protocol-member! MTLDevice::peerIndex not found
!missing-protocol-member! MTLDevice::sampleTimestamps:gpuTimestamp: not found
!missing-protocol-member! MTLDevice::supportsFamily: not found
!missing-protocol-member! MTLDevice::supportsVersion: not found
!missing-protocol-member! MTLDevice::supportsShaderBarycentricCoordinates not found
!missing-protocol-member! MTLHeap::hazardTrackingMode not found
!missing-protocol-member! MTLHeap::newBufferWithLength:options:offset: not found
!missing-protocol-member! MTLHeap::newTextureWithDescriptor:offset: not found
@ -57,7 +65,9 @@
!missing-protocol-member! MTLResource::hazardTrackingMode not found
!missing-protocol-member! MTLResource::heapOffset not found
!missing-protocol-member! MTLResource::resourceOptions not found
!missing-protocol-member! MTLTexture::newRemoteTextureViewForDevice: not found
!missing-protocol-member! MTLTexture::newTextureViewWithPixelFormat:textureType:levels:slices:swizzle: not found
!missing-protocol-member! MTLTexture::remoteStorageTexture not found
!missing-protocol-member! MTLTexture::swizzle not found
!missing-selector! MTLCaptureDescriptor::captureObject not bound
!missing-selector! MTLCaptureDescriptor::destination not bound
@ -93,16 +103,3 @@
!missing-selector! MTLTextureDescriptor::swizzle not bound
!missing-type! MTLCaptureDescriptor not bound
!missing-type! MTLCounterSampleBufferDescriptor not bound
## appended from unclassified file
!missing-enum! MTLDeviceLocation not bound
!missing-protocol-member! MTLBuffer::newRemoteBufferViewForDevice: not found
!missing-protocol-member! MTLBuffer::remoteStorageBuffer not found
!missing-protocol-member! MTLDevice::location not found
!missing-protocol-member! MTLDevice::locationNumber not found
!missing-protocol-member! MTLDevice::maxTransferRate not found
!missing-protocol-member! MTLDevice::peerCount not found
!missing-protocol-member! MTLDevice::peerGroupID not found
!missing-protocol-member! MTLDevice::peerIndex not found
!missing-protocol-member! MTLDevice::supportsShaderBarycentricCoordinates not found
!missing-protocol-member! MTLTexture::newRemoteTextureViewForDevice: not found
!missing-protocol-member! MTLTexture::remoteStorageTexture not found

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

@ -1,7 +1,6 @@
!missing-selector! MTKView::preferredDevice not bound
!missing-selector! MTKView::preferredDrawableSize not bound
## appended from unclassified file
!missing-selector! MTKView::depthStencilAttachmentTextureUsage not bound
!missing-selector! MTKView::multisampleColorAttachmentTextureUsage not bound
!missing-selector! MTKView::preferredDevice not bound
!missing-selector! MTKView::preferredDrawableSize not bound
!missing-selector! MTKView::setDepthStencilAttachmentTextureUsage: not bound
!missing-selector! MTKView::setMultisampleColorAttachmentTextureUsage: not bound

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

@ -1,4 +1,5 @@
!missing-enum! MPSAliasingStrategy not bound
!missing-enum! MPSCNNConvolutionWeightsLayout not bound
!missing-enum! MPSDeviceOptions not bound
!missing-enum! MPSMatrixRandomDistribution not bound
!missing-enum! MPSPolygonType not bound
@ -15,6 +16,7 @@
!missing-protocol-conformance! MPSCNNBatchNormalizationNode should conform to MPSNNTrainableNode
!missing-protocol-conformance! MPSCNNConvolutionNode should conform to MPSNNTrainableNode
!missing-protocol-conformance! MPSCNNInstanceNormalizationNode should conform to MPSNNTrainableNode
!missing-protocol-member! MPSCNNConvolutionDataSource::weightsLayout not found
!missing-protocol-member! MPSCNNInstanceNormalizationDataSource::load not found
!missing-protocol-member! MPSCNNInstanceNormalizationDataSource::purge not found
!missing-selector! +MPSCNNConvolutionTransposeGradientNode::nodeWithSourceGradient:sourceImage:convolutionTransposeGradientState:weights: not bound
@ -49,6 +51,7 @@
!missing-selector! MPSCNNBatchNormalizationNode::trainingStyle not bound
!missing-selector! MPSCNNBinaryKernel::batchEncodingStorageSizeForPrimaryImage:secondaryImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNBinaryKernel::encodingStorageSizeForPrimaryImage:secondaryImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNConvolutionGradientState::gradientForWeightsLayout not bound
!missing-selector! MPSCNNConvolutionNode::setTrainingStyle: not bound
!missing-selector! MPSCNNConvolutionNode::trainingStyle not bound
!missing-selector! MPSCNNConvolutionTranspose::dataSource not bound
@ -73,6 +76,9 @@
!missing-selector! MPSCNNConvolutionTransposeGradient::sourceImageFeatureChannels not bound
!missing-selector! MPSCNNConvolutionTransposeGradientNode::initWithSourceGradient:sourceImage:convolutionTransposeGradientState:weights: not bound
!missing-selector! MPSCNNConvolutionTransposeGradientState::convolutionTranspose not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::biasesOffset not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::initWithWeights:weightsOffset:biases:biasesOffset:cnnConvolutionDescriptor: not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::weightsOffset not bound
!missing-selector! MPSCNNDropout::resultStateBatchForSourceImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNDropout::resultStateForSourceImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNDropout::temporaryResultStateBatchForCommandBuffer:sourceImage:sourceStates:destinationImage: not bound
@ -164,6 +170,7 @@
!missing-selector! MPSMatrixRandom::batchStart not bound
!missing-selector! MPSMatrixRandom::destinationDataType not bound
!missing-selector! MPSMatrixRandom::distributionType not bound
!missing-selector! MPSMatrixRandom::encodeToCommandBuffer:destinationMatrix: not bound
!missing-selector! MPSMatrixRandom::encodeToCommandBuffer:destinationVector: not bound
!missing-selector! MPSMatrixRandom::setBatchSize: not bound
!missing-selector! MPSMatrixRandom::setBatchStart: not bound
@ -511,22 +518,12 @@
!missing-selector! MPSSVGFDefaultTextureAllocator::textureWithPixelFormat:width:height: not bound
!missing-selector! MPSSVGFDenoiser::bilateralFilterIterations not bound
!missing-selector! MPSSVGFDenoiser::clearTemporalHistory not bound
!missing-selector! MPSSVGFDenoiser::depthNormalTexture not bound
!missing-selector! MPSSVGFDenoiser::destinationTexture not bound
!missing-selector! MPSSVGFDenoiser::destinationTexture2 not bound
!missing-selector! MPSSVGFDenoiser::encodeToCommandBuffer: not bound
!missing-selector! MPSSVGFDenoiser::encodeToCommandBuffer:sourceTexture:destinationTexture:sourceTexture2:destinationTexture2:motionVectorTexture:depthNormalTexture:previousDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::encodeToCommandBuffer:sourceTexture:motionVectorTexture:depthNormalTexture:previousDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::initWithDevice: not bound
!missing-selector! MPSSVGFDenoiser::initWithSVGF:textureAllocator: not bound
!missing-selector! MPSSVGFDenoiser::motionVectorTexture not bound
!missing-selector! MPSSVGFDenoiser::previousDepthNormalTexture not bound
!missing-selector! MPSSVGFDenoiser::releaseTemporaryTextures not bound
!missing-selector! MPSSVGFDenoiser::setBilateralFilterIterations: not bound
!missing-selector! MPSSVGFDenoiser::setDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::setMotionVectorTexture: not bound
!missing-selector! MPSSVGFDenoiser::setPreviousDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::setSourceTexture: not bound
!missing-selector! MPSSVGFDenoiser::setSourceTexture2: not bound
!missing-selector! MPSSVGFDenoiser::sourceTexture not bound
!missing-selector! MPSSVGFDenoiser::sourceTexture2 not bound
!missing-selector! MPSSVGFDenoiser::svgf not bound
!missing-selector! MPSSVGFDenoiser::textureAllocator not bound
!missing-selector! MPSTemporalAA::blendFactor not bound
@ -598,11 +595,3 @@
!missing-type! MPSTemporaryNDArray not bound
!unknown-simd-type-mapping! The Simd type vector_uchar16 does not have a mapping to a managed type. Please add one in SimdCheck.cs
!wrong-base-type! MPSTriangleAccelerationStructure expected MPSPolygonAccelerationStructure actual MPSAccelerationStructure
## appended from unclassified file
!missing-enum! MPSCNNConvolutionWeightsLayout not bound
!missing-protocol-member! MPSCNNConvolutionDataSource::weightsLayout not found
!missing-selector! MPSCNNConvolutionGradientState::gradientForWeightsLayout not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::biasesOffset not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::initWithWeights:weightsOffset:biases:biasesOffset:cnnConvolutionDescriptor: not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::weightsOffset not bound
!missing-selector! MPSMatrixRandom::encodeToCommandBuffer:destinationMatrix: not bound

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

@ -75,6 +75,8 @@
!missing-selector! NEFilterSocketFlow::socketFamily not bound
!missing-selector! NEFilterSocketFlow::socketProtocol not bound
!missing-selector! NEFilterSocketFlow::socketType not bound
!missing-selector! NEFilterVerdict::setShouldReport: not bound
!missing-selector! NEFilterVerdict::shouldReport not bound
!missing-selector! NEFlowMetaData::sourceAppAuditToken not bound
!missing-selector! NENetworkRule::initWithDestinationHost:protocol: not bound
!missing-selector! NENetworkRule::initWithDestinationNetwork:prefix:protocol: not bound
@ -110,6 +112,3 @@
!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,5 +1,7 @@
!missing-enum! QLThumbnailError not bound
!missing-enum! QLThumbnailGenerationRequestRepresentationTypes not bound
!missing-enum! QLThumbnailRepresentationType not bound
!missing-field! QLThumbnailErrorDomain not bound
!missing-selector! +QLThumbnailGenerator::sharedGenerator not bound
!missing-selector! +QLThumbnailReply::replyWithContextSize:currentContextDrawingBlock: not bound
!missing-selector! +QLThumbnailReply::replyWithContextSize:drawingBlock: not bound
@ -30,6 +32,3 @@
!missing-type! QLThumbnailProvider not bound
!missing-type! QLThumbnailReply not bound
!missing-type! QLThumbnailRepresentation not bound
## appended from unclassified file
!missing-enum! QLThumbnailError not bound
!missing-field! QLThumbnailErrorDomain not bound

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

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

@ -1,6 +1,5 @@
!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

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

@ -7,6 +7,7 @@
!missing-enum! SCNLightProbeType not bound
!missing-enum! SCNLightProbeUpdateType not bound
!missing-field! SCNHitTestOptionIgnoreLightArea not bound
!missing-field! SCNLightingModelShadowOnly not bound
!missing-field! SCNLightTypeArea not bound
!missing-protocol-member! SCNSceneRenderer::currentViewport not found
!missing-protocol-member! SCNSceneRenderer::isTemporalAntialiasingEnabled not found
@ -73,5 +74,3 @@
!missing-selector! SCNTechnique::setLibrary: not bound
!missing-selector! SCNView::drawableResizesAsynchronously not bound
!missing-selector! SCNView::setDrawableResizesAsynchronously: not bound
## appended from unclassified file
!missing-field! SCNLightingModelShadowOnly not bound

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

@ -1,6 +1,8 @@
!missing-enum! OSSystemExtensionErrorCode not bound
!missing-enum! OSSystemExtensionReplacementAction not bound
!missing-enum! OSSystemExtensionRequestResult not bound
!missing-field! NSSystemExtensionUsageDescriptionKey not bound
!missing-field! OSBundleUsageDescriptionKey not bound
!missing-field! OSSystemExtensionErrorDomain not bound
!missing-protocol! OSSystemExtensionRequestDelegate not bound
!missing-selector! +OSSystemExtensionManager::sharedManager not bound
@ -17,6 +19,3 @@
!missing-type! OSSystemExtensionManager not bound
!missing-type! OSSystemExtensionProperties not bound
!missing-type! OSSystemExtensionRequest not bound
## appended from unclassified file
!missing-field! NSSystemExtensionUsageDescriptionKey not bound
!missing-field! OSBundleUsageDescriptionKey not bound

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

@ -3,6 +3,8 @@
!missing-field! kVTCompressionPropertyKey_AlphaChannelMode not bound
!missing-field! kVTCompressionPropertyKey_GammaLevel not bound
!missing-field! kVTCompressionPropertyKey_TargetQualityForAlpha not bound
!missing-field! kVTCompressionPropertyKey_UsingGPURegistryID not bound
!missing-field! kVTDecompressionPropertyKey_UsingGPURegistryID not bound
!missing-field! kVTPixelTransferPropertyKey_RealTime not bound
!missing-field! kVTVideoEncoderList_GPURegistryID not bound
!missing-field! kVTVideoEncoderList_InstanceLimit not bound
@ -12,6 +14,3 @@
!missing-field! kVTVideoEncoderList_SupportedSelectionProperties not bound
!missing-field! kVTVideoEncoderSpecification_PreferredEncoderGPURegistryID not bound
!missing-field! kVTVideoEncoderSpecification_RequiredEncoderGPURegistryID not bound
## appended from unclassified file
!missing-field! kVTCompressionPropertyKey_UsingGPURegistryID not bound
!missing-field! kVTDecompressionPropertyKey_UsingGPURegistryID not bound

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

@ -22,7 +22,6 @@
!missing-selector! VNCoreMLModel::setInputImageFeatureName: not bound
!missing-selector! VNDetectFaceLandmarksRequest::constellation not bound
!missing-selector! VNDetectFaceLandmarksRequest::setConstellation: not bound
!missing-selector! VNFaceLandmarkRegion2D::occlusionFlagsPerPoint not bound
!missing-selector! VNFaceLandmarkRegion2D::precisionEstimatesPerPoint not bound
!missing-selector! VNFaceObservation::faceCaptureQuality not bound
!missing-selector! VNFeaturePrintObservation::computeDistance:toFeaturePrintObservation:error: not bound

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

@ -8,11 +8,13 @@
!missing-field! AVAssetExportPresetHEVC1920x1080WithAlpha not bound
!missing-field! AVAssetExportPresetHEVC3840x2160WithAlpha not bound
!missing-field! AVAssetExportPresetHEVCHighestQualityWithAlpha not bound
!missing-field! AVContentKeyRequestRequiresValidationDataInSecureTokenKey not bound
!missing-field! AVContentKeySystemAuthorizationToken not bound
!missing-field! AVMediaCharacteristicContainsAlphaChannel not bound
!missing-field! AVMediaCharacteristicIsOriginalContent not bound
!missing-field! AVOutputSettingsPresetHEVC1920x1080WithAlpha not bound
!missing-field! AVOutputSettingsPresetHEVC3840x2160WithAlpha not bound
!missing-field! AVPlayerItemMediaSelectionDidChangeNotification not bound
!missing-field! AVPlayerItemRecommendedTimeOffsetFromLiveDidChangeNotification not bound
!missing-field! AVSemanticSegmentationMatteTypeHair not bound
!missing-field! AVSemanticSegmentationMatteTypeSkin not bound
@ -50,11 +52,14 @@
!missing-selector! AVAudioSession::allowHapticsAndSystemSoundsDuringRecording not bound
!missing-selector! AVAudioSession::setAllowHapticsAndSystemSoundsDuringRecording:error: not bound
!missing-selector! AVAudioSinkNode::initWithReceiverBlock: not bound
!missing-selector! AVAudioSourceNode::initWithFormat:renderBlock: not bound
!missing-selector! AVAudioSourceNode::initWithRenderBlock: not bound
!missing-selector! AVCompositionTrack::formatDescriptionReplacements not bound
!missing-selector! AVCompositionTrackFormatDescriptionReplacement::originalFormatDescription not bound
!missing-selector! AVCompositionTrackFormatDescriptionReplacement::replacementFormatDescription not bound
!missing-selector! AVMutableCompositionTrack::isEnabled not bound
!missing-selector! AVMutableCompositionTrack::replaceFormatDescription:withFormatDescription: not bound
!missing-selector! AVMutableCompositionTrack::setEnabled: not bound
!missing-selector! AVPlayerItem::automaticallyPreservesTimeOffsetFromLive not bound
!missing-selector! AVPlayerItem::configuredTimeOffsetFromLive not bound
!missing-selector! AVPlayerItem::recommendedTimeOffsetFromLive not bound
@ -81,9 +86,3 @@
!missing-type! AVCompositionTrackFormatDescriptionReplacement not bound
!missing-type! AVSemanticSegmentationMatte not bound
!missing-type! AVVideoCompositionRenderHint not bound
## 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

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

@ -1,9 +1,12 @@
!missing-enum! NSBatchInsertRequestResultType not bound
!missing-enum! NSPersistentCloudKitContainerSchemaInitializationOptions not bound
!missing-field! NSPersistentHistoryTokenKey not bound
!missing-field! NSPersistentStoreRemoteChangeNotification not bound
!missing-field! NSPersistentStoreRemoteChangeNotificationPostOptionKey not bound
!missing-field! NSPersistentStoreURLKey not bound
!missing-protocol-member! NSFetchedResultsControllerDelegate::controller:didChangeContentWithDifference: not found
!missing-protocol-member! NSFetchedResultsControllerDelegate::controller:didChangeContentWithSnapshot: not found
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:objects: not bound
!missing-selector! +NSPersistentHistoryChange::entityDescription not bound
!missing-selector! +NSPersistentHistoryChange::entityDescriptionWithContext: not bound
!missing-selector! +NSPersistentHistoryChange::fetchRequest not bound
@ -13,34 +16,10 @@
!missing-selector! +NSPersistentHistoryTransaction::fetchRequest not bound
!missing-selector! NSAttributeDescription::preservesValueInHistoryOnDeletion not bound
!missing-selector! NSAttributeDescription::setPreservesValueInHistoryOnDeletion: not bound
!missing-selector! NSDerivedAttributeDescription::derivationExpression not bound
!missing-selector! NSDerivedAttributeDescription::setDerivationExpression: not bound
!missing-selector! NSPersistentCloudKitContainer::recordForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainer::recordsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::containerIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerOptions::initWithContainerIdentifier: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::setShouldInitializeSchema: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::shouldInitializeSchema not bound
!missing-selector! NSPersistentHistoryChangeRequest::fetchRequest not bound
!missing-selector! NSPersistentHistoryChangeRequest::setFetchRequest: not bound
!missing-selector! NSPersistentStoreDescription::cloudKitContainerOptions not bound
!missing-selector! NSPersistentStoreDescription::setCloudKitContainerOptions: not bound
!missing-type! NSDerivedAttributeDescription not bound
!missing-type! NSPersistentCloudKitContainer not bound
!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
@ -48,5 +27,22 @@
!missing-selector! NSBatchInsertRequest::setResultType: not bound
!missing-selector! NSBatchInsertResult::result not bound
!missing-selector! NSBatchInsertResult::resultType not bound
!missing-selector! NSDerivedAttributeDescription::derivationExpression not bound
!missing-selector! NSDerivedAttributeDescription::setDerivationExpression: not bound
!missing-selector! NSPersistentCloudKitContainer::initializeCloudKitSchemaWithOptions:error: not bound
!missing-selector! NSPersistentCloudKitContainer::recordForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainer::recordsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::containerIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerOptions::initWithContainerIdentifier: not bound
!missing-selector! NSPersistentHistoryChangeRequest::fetchRequest not bound
!missing-selector! NSPersistentHistoryChangeRequest::setFetchRequest: not bound
!missing-selector! NSPersistentStoreCoordinator::currentPersistentHistoryTokenFromStores: not bound
!missing-selector! NSPersistentStoreDescription::cloudKitContainerOptions not bound
!missing-selector! NSPersistentStoreDescription::setCloudKitContainerOptions: not bound
!missing-type! NSBatchInsertRequest not bound
!missing-type! NSBatchInsertResult not bound
!missing-type! NSDerivedAttributeDescription not bound
!missing-type! NSPersistentCloudKitContainer not bound
!missing-type! NSPersistentCloudKitContainerOptions not bound

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

@ -2,6 +2,11 @@
!missing-field! kCIImageAuxiliarySemanticSegmentationHairMatte not bound
!missing-field! kCIImageAuxiliarySemanticSegmentationSkinMatte not bound
!missing-field! kCIImageAuxiliarySemanticSegmentationTeethMatte not bound
!missing-field! kCIImageRepresentationAVSemanticSegmentationMattes not bound
!missing-field! kCIImageRepresentationSemanticSegmentationHairMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationSkinMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationTeethMatteImage not bound
!missing-field! kCIInputEnableEDRModeKey not bound
!missing-protocol! CIAccordionFoldTransition not bound
!missing-protocol! CIAffineClamp not bound
!missing-protocol! CIAffineTile not bound
@ -54,9 +59,11 @@
!missing-protocol! CIFalseColor not bound
!missing-protocol! CIFilter not bound
!missing-protocol! CIFlashTransition not bound
!missing-protocol! CIFourCoordinateGeometryFilter not bound
!missing-protocol! CIFourfoldReflectedTile not bound
!missing-protocol! CIFourfoldRotatedTile not bound
!missing-protocol! CIFourfoldTranslatedTile not bound
!missing-protocol! CIGaborGradients not bound
!missing-protocol! CIGammaAdjust not bound
!missing-protocol! CIGaussianBlur not bound
!missing-protocol! CIGaussianGradient not bound
@ -69,6 +76,9 @@
!missing-protocol! CIHueAdjust not bound
!missing-protocol! CIHueSaturationValueGradient not bound
!missing-protocol! CIKaleidoscope not bound
!missing-protocol! CIKeystoneCorrectionCombined not bound
!missing-protocol! CIKeystoneCorrectionHorizontal not bound
!missing-protocol! CIKeystoneCorrectionVertical not bound
!missing-protocol! CILabDeltaE not bound
!missing-protocol! CILanczosScaleTransform not bound
!missing-protocol! CILenticularHaloGenerator not bound
@ -99,6 +109,7 @@
!missing-protocol! CIParallelogramTile not bound
!missing-protocol! CIPDF417BarcodeGenerator not bound
!missing-protocol! CIPerspectiveCorrection not bound
!missing-protocol! CIPerspectiveRotate not bound
!missing-protocol! CIPerspectiveTile not bound
!missing-protocol! CIPerspectiveTransform not bound
!missing-protocol! CIPerspectiveTransformWithExtent not bound
@ -109,6 +120,7 @@
!missing-protocol! CIRadialGradient not bound
!missing-protocol! CIRandomGenerator not bound
!missing-protocol! CIRippleTransition not bound
!missing-protocol! CIRoundedRectangleGenerator not bound
!missing-protocol! CISaliencyMap not bound
!missing-protocol! CISepiaTone not bound
!missing-protocol! CIShadedMaterial not bound
@ -207,6 +219,7 @@
!missing-selector! +CIFilter::fourfoldReflectedTileFilter not bound
!missing-selector! +CIFilter::fourfoldRotatedTileFilter not bound
!missing-selector! +CIFilter::fourfoldTranslatedTileFilter not bound
!missing-selector! +CIFilter::gaborGradientsFilter not bound
!missing-selector! +CIFilter::gammaAdjustFilter not bound
!missing-selector! +CIFilter::gaussianBlurFilter not bound
!missing-selector! +CIFilter::gaussianGradientFilter not bound
@ -221,6 +234,9 @@
!missing-selector! +CIFilter::hueBlendModeFilter not bound
!missing-selector! +CIFilter::hueSaturationValueGradientFilter not bound
!missing-selector! +CIFilter::kaleidoscopeFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionCombinedFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionHorizontalFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionVerticalFilter not bound
!missing-selector! +CIFilter::LabDeltaE not bound
!missing-selector! +CIFilter::lanczosScaleTransformFilter not bound
!missing-selector! +CIFilter::lenticularHaloGeneratorFilter not bound
@ -260,6 +276,7 @@
!missing-selector! +CIFilter::parallelogramTileFilter not bound
!missing-selector! +CIFilter::PDF417BarcodeGenerator not bound
!missing-selector! +CIFilter::perspectiveCorrectionFilter not bound
!missing-selector! +CIFilter::perspectiveRotateFilter not bound
!missing-selector! +CIFilter::perspectiveTileFilter not bound
!missing-selector! +CIFilter::perspectiveTransformFilter not bound
!missing-selector! +CIFilter::perspectiveTransformWithExtentFilter not bound
@ -278,6 +295,7 @@
!missing-selector! +CIFilter::radialGradientFilter not bound
!missing-selector! +CIFilter::randomGeneratorFilter not bound
!missing-selector! +CIFilter::rippleTransitionFilter not bound
!missing-selector! +CIFilter::roundedRectangleGeneratorFilter not bound
!missing-selector! +CIFilter::saliencyMapFilter not bound
!missing-selector! +CIFilter::saturationBlendModeFilter not bound
!missing-selector! +CIFilter::screenBlendModeFilter not bound
@ -331,28 +349,8 @@
!missing-selector! +CIImage::yellowImage not bound
!missing-selector! CIBlendKernel::applyWithForeground:background:colorSpace: not bound
!missing-selector! CIContext::depthBlurEffectFilterForImage:disparityImage:portraitEffectsMatte:hairSemanticSegmentation:orientation:options: not bound
!missing-selector! CIImage::imageByApplyingTransform:highQualityDownsample: not bound
!missing-selector! CIImage::initWithCGImageSource:index:options: not bound
!missing-selector! CIImage::initWithSemanticSegmentationMatte: not bound
!missing-selector! CIImage::initWithSemanticSegmentationMatte:options: not bound
!missing-selector! CIImage::semanticSegmentationMatte not bound
## appended from unclassified file
!missing-field! kCIImageRepresentationAVSemanticSegmentationMattes not bound
!missing-field! kCIImageRepresentationSemanticSegmentationHairMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationSkinMatteImage not bound
!missing-field! kCIImageRepresentationSemanticSegmentationTeethMatteImage not bound
!missing-protocol! CIGaborGradients not bound
!missing-protocol! CIKeystoneCorrectionCombined not bound
!missing-protocol! CIKeystoneCorrectionHorizontal not bound
!missing-protocol! CIKeystoneCorrectionVertical not bound
!missing-protocol! CIPerspectiveRotate not bound
!missing-selector! +CIFilter::gaborGradientsFilter not bound
!missing-selector! +CIFilter::keystoneCorrectionCombinedFilter not bound
!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

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

@ -19,20 +19,25 @@
!missing-selector! +MLParameterKey::linkedModelSearchPath not bound
!missing-selector! +MLParameterKey::miniBatchSize not bound
!missing-selector! +MLParameterKey::momentum not bound
!missing-selector! +MLParameterKey::removeExamples not bound
!missing-selector! +MLParameterKey::seed not bound
!missing-selector! +MLParameterKey::shuffle not bound
!missing-selector! +MLUpdateTask::updateTaskForModelAtURL:trainingData:configuration:completionHandler:error: not bound
!missing-selector! +MLUpdateTask::updateTaskForModelAtURL:trainingData:configuration:progressHandlers:error: not bound
!missing-selector! MLKey::name not bound
!missing-selector! MLKey::scope not bound
!missing-selector! MLModel::predictionsFromBatch:error: not bound
!missing-selector! MLModelConfiguration::allowLowPrecisionAccumulationOnGPU not bound
!missing-selector! MLModelConfiguration::modelParameters not bound
!missing-selector! MLModelConfiguration::parameters not bound
!missing-selector! MLModelConfiguration::preferredMetalDevice not bound
!missing-selector! MLModelConfiguration::setAllowLowPrecisionAccumulationOnGPU: not bound
!missing-selector! MLModelConfiguration::setModelParameters: not bound
!missing-selector! MLModelConfiguration::setParameters: not bound
!missing-selector! MLModelConfiguration::setPreferredMetalDevice: not bound
!missing-selector! MLModelConfiguration::setUpdateParameters: not bound
!missing-selector! MLModelConfiguration::updateParameters not bound
!missing-selector! MLModelDescription::isUpdatable not bound
!missing-selector! MLModelDescription::parameterDescriptionsByKey not bound
!missing-selector! MLModelDescription::trainingInputDescriptionsByName not bound
!missing-selector! MLNumericConstraint::enumeratedNumbers not bound
!missing-selector! MLNumericConstraint::maxNumber not bound
@ -40,6 +45,7 @@
!missing-selector! MLParameterDescription::defaultValue not bound
!missing-selector! MLParameterDescription::key not bound
!missing-selector! MLParameterDescription::numericConstraint not bound
!missing-selector! MLParameterKey::scopedTo: not bound
!missing-selector! MLTask::cancel not bound
!missing-selector! MLTask::error not bound
!missing-selector! MLTask::resume not bound
@ -61,11 +67,3 @@
!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

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

@ -0,0 +1,2 @@
!missing-pinvoke! CMTimebaseSetMasterClock is not bound
!missing-pinvoke! CMTimebaseSetMasterTimebase is not bound

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

@ -0,0 +1,4 @@
!missing-field! kCTFontFeatureSampleTextKey not bound
!missing-field! kCTFontFeatureTooltipTextKey not bound
!missing-pinvoke! CTFontCreateForStringWithLanguage is not bound
!missing-pinvoke! CTGlyphInfoGetGlyph is not bound

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

@ -9,7 +9,6 @@
!missing-selector! GKMatchRequest::setTournamentForInvitePool: not bound
!missing-selector! GKMatchRequest::tournamentForInvitePool not bound
!missing-selector! GKPlayer::gamePlayerID not bound
!missing-selector! GKPlayer::scopedIDsArePersistent not bound
!missing-selector! GKPlayer::teamPlayerID not bound
!unknown-native-enum! GKPeerPickerConnectionType bound
## appended from unclassified file
!missing-selector! GKPlayer::scopedIDsArePersistent not bound

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

@ -1,5 +1,3 @@
## appended from unclassified file
!missing-enum! HMHomeManagerAuthorizationStatus not bound
!missing-protocol! HMNetworkConfigurationProfileDelegate not bound
!missing-protocol-member! HMHomeManagerDelegate::homeManager:didUpdateAuthorizationStatus: not found

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

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

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

@ -1,4 +1,5 @@
!missing-enum! MPSAliasingStrategy not bound
!missing-enum! MPSCNNConvolutionWeightsLayout not bound
!missing-enum! MPSDeviceOptions not bound
!missing-enum! MPSMatrixRandomDistribution not bound
!missing-enum! MPSPolygonType not bound
@ -15,6 +16,7 @@
!missing-protocol-conformance! MPSCNNBatchNormalizationNode should conform to MPSNNTrainableNode
!missing-protocol-conformance! MPSCNNConvolutionNode should conform to MPSNNTrainableNode
!missing-protocol-conformance! MPSCNNInstanceNormalizationNode should conform to MPSNNTrainableNode
!missing-protocol-member! MPSCNNConvolutionDataSource::weightsLayout not found
!missing-protocol-member! MPSCNNInstanceNormalizationDataSource::load not found
!missing-protocol-member! MPSCNNInstanceNormalizationDataSource::purge not found
!missing-selector! +MPSCNNConvolutionTransposeGradientNode::nodeWithSourceGradient:sourceImage:convolutionTransposeGradientState:weights: not bound
@ -49,6 +51,7 @@
!missing-selector! MPSCNNBatchNormalizationNode::trainingStyle not bound
!missing-selector! MPSCNNBinaryKernel::batchEncodingStorageSizeForPrimaryImage:secondaryImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNBinaryKernel::encodingStorageSizeForPrimaryImage:secondaryImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNConvolutionGradientState::gradientForWeightsLayout not bound
!missing-selector! MPSCNNConvolutionNode::setTrainingStyle: not bound
!missing-selector! MPSCNNConvolutionNode::trainingStyle not bound
!missing-selector! MPSCNNConvolutionTranspose::dataSource not bound
@ -73,6 +76,9 @@
!missing-selector! MPSCNNConvolutionTransposeGradient::sourceImageFeatureChannels not bound
!missing-selector! MPSCNNConvolutionTransposeGradientNode::initWithSourceGradient:sourceImage:convolutionTransposeGradientState:weights: not bound
!missing-selector! MPSCNNConvolutionTransposeGradientState::convolutionTranspose not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::biasesOffset not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::initWithWeights:weightsOffset:biases:biasesOffset:cnnConvolutionDescriptor: not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::weightsOffset not bound
!missing-selector! MPSCNNDropout::resultStateBatchForSourceImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNDropout::resultStateForSourceImage:sourceStates:destinationImage: not bound
!missing-selector! MPSCNNDropout::temporaryResultStateBatchForCommandBuffer:sourceImage:sourceStates:destinationImage: not bound
@ -164,6 +170,7 @@
!missing-selector! MPSMatrixRandom::batchStart not bound
!missing-selector! MPSMatrixRandom::destinationDataType not bound
!missing-selector! MPSMatrixRandom::distributionType not bound
!missing-selector! MPSMatrixRandom::encodeToCommandBuffer:destinationMatrix: not bound
!missing-selector! MPSMatrixRandom::encodeToCommandBuffer:destinationVector: not bound
!missing-selector! MPSMatrixRandom::setBatchSize: not bound
!missing-selector! MPSMatrixRandom::setBatchStart: not bound
@ -511,22 +518,12 @@
!missing-selector! MPSSVGFDefaultTextureAllocator::textureWithPixelFormat:width:height: not bound
!missing-selector! MPSSVGFDenoiser::bilateralFilterIterations not bound
!missing-selector! MPSSVGFDenoiser::clearTemporalHistory not bound
!missing-selector! MPSSVGFDenoiser::depthNormalTexture not bound
!missing-selector! MPSSVGFDenoiser::destinationTexture not bound
!missing-selector! MPSSVGFDenoiser::destinationTexture2 not bound
!missing-selector! MPSSVGFDenoiser::encodeToCommandBuffer: not bound
!missing-selector! MPSSVGFDenoiser::encodeToCommandBuffer:sourceTexture:destinationTexture:sourceTexture2:destinationTexture2:motionVectorTexture:depthNormalTexture:previousDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::encodeToCommandBuffer:sourceTexture:motionVectorTexture:depthNormalTexture:previousDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::initWithDevice: not bound
!missing-selector! MPSSVGFDenoiser::initWithSVGF:textureAllocator: not bound
!missing-selector! MPSSVGFDenoiser::motionVectorTexture not bound
!missing-selector! MPSSVGFDenoiser::previousDepthNormalTexture not bound
!missing-selector! MPSSVGFDenoiser::releaseTemporaryTextures not bound
!missing-selector! MPSSVGFDenoiser::setBilateralFilterIterations: not bound
!missing-selector! MPSSVGFDenoiser::setDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::setMotionVectorTexture: not bound
!missing-selector! MPSSVGFDenoiser::setPreviousDepthNormalTexture: not bound
!missing-selector! MPSSVGFDenoiser::setSourceTexture: not bound
!missing-selector! MPSSVGFDenoiser::setSourceTexture2: not bound
!missing-selector! MPSSVGFDenoiser::sourceTexture not bound
!missing-selector! MPSSVGFDenoiser::sourceTexture2 not bound
!missing-selector! MPSSVGFDenoiser::svgf not bound
!missing-selector! MPSSVGFDenoiser::textureAllocator not bound
!missing-selector! MPSTemporalAA::blendFactor not bound
@ -598,11 +595,3 @@
!missing-type! MPSTemporaryNDArray not bound
!unknown-simd-type-mapping! The Simd type vector_uchar16 does not have a mapping to a managed type. Please add one in SimdCheck.cs
!wrong-base-type! MPSTriangleAccelerationStructure expected MPSPolygonAccelerationStructure actual MPSAccelerationStructure
## appended from unclassified file
!missing-enum! MPSCNNConvolutionWeightsLayout not bound
!missing-protocol-member! MPSCNNConvolutionDataSource::weightsLayout not found
!missing-selector! MPSCNNConvolutionGradientState::gradientForWeightsLayout not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::biasesOffset not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::initWithWeights:weightsOffset:biases:biasesOffset:cnnConvolutionDescriptor: not bound
!missing-selector! MPSCNNConvolutionWeightsAndBiasesState::weightsOffset not bound
!missing-selector! MPSMatrixRandom::encodeToCommandBuffer:destinationMatrix: not bound

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

@ -1,3 +1,7 @@
!deprecated-attribute-missing! PHAssetCollection::fetchMomentsInMomentList:options: missing a [Deprecated] attribute
!deprecated-attribute-missing! PHAssetCollection::fetchMomentsWithOptions: missing a [Deprecated] attribute
!deprecated-attribute-missing! PHCollectionList::fetchMomentListsWithSubtype:containingMoment:options: missing a [Deprecated] attribute
!deprecated-attribute-missing! PHCollectionList::fetchMomentListsWithSubtype:options: missing a [Deprecated] attribute
!deprecated-attribute-missing! PHImageManager::requestImageDataForAsset:options:resultHandler: missing a [Deprecated] attribute
!missing-field! PHPhotosErrorDomain not bound
!missing-protocol! PHPhotoLibraryAvailabilityObserver not bound
@ -6,11 +10,6 @@
!missing-selector! PHPhotoLibrary::unavailabilityReason not bound
!missing-selector! PHPhotoLibrary::unregisterAvailabilityObserver: not bound
!missing-type! PHChangeRequest not bound
!wrong-base-type! PHAssetChangeRequest expected PHChangeRequest actual NSObject
!wrong-base-type! PHAssetCollectionChangeRequest expected PHChangeRequest actual NSObject
!wrong-base-type! PHCollectionListChangeRequest expected PHChangeRequest actual NSObject
## appended from unclassified file
!deprecated-attribute-missing! PHAssetCollection::fetchMomentsInMomentList:options: missing a [Deprecated] attribute
!deprecated-attribute-missing! PHAssetCollection::fetchMomentsWithOptions: missing a [Deprecated] attribute
!deprecated-attribute-missing! PHCollectionList::fetchMomentListsWithSubtype:containingMoment:options: missing a [Deprecated] attribute
!deprecated-attribute-missing! PHCollectionList::fetchMomentListsWithSubtype:options: missing a [Deprecated] attribute
!wrong-base-type! PHAssetChangeRequest expected PHChangeRequest actual NSObject

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

@ -4,6 +4,7 @@
!missing-enum! SCNLightProbeType not bound
!missing-enum! SCNLightProbeUpdateType not bound
!missing-field! SCNHitTestOptionIgnoreLightArea not bound
!missing-field! SCNLightingModelShadowOnly not bound
!missing-field! SCNLightTypeArea not bound
!missing-protocol-member! SCNSceneRenderer::currentViewport not found
!missing-protocol-member! SCNSceneRenderer::isTemporalAntialiasingEnabled not found
@ -68,5 +69,3 @@
!missing-selector! SCNScene::wantsScreenSpaceReflection not bound
!missing-selector! SCNTechnique::library not bound
!missing-selector! SCNTechnique::setLibrary: not bound
## appended from unclassified file
!missing-field! SCNLightingModelShadowOnly not bound

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

@ -100,86 +100,7 @@
!unknown-native-enum! UITextWritingDirection bound
## Introduced and deprecated in Xcode 11 and likely it will be removed in a future beta
!missing-protocol-conformance! UIMenuElement should conform to UICommandGroupable
!missing-enum! UIDirectionalRectEdge not bound
!missing-enum! UICommandStateMask not bound
!missing-field! UICommandGroupAbout not bound
!missing-field! UICommandGroupAlignment not bound
!missing-field! UICommandGroupApplication not bound
!missing-field! UICommandGroupBringAllToFront not bound
!missing-field! UICommandGroupClose not bound
!missing-field! UICommandGroupEdit not bound
!missing-field! UICommandGroupFile not bound
!missing-field! UICommandGroupFind not bound
!missing-field! UICommandGroupFont not bound
!missing-field! UICommandGroupFormat not bound
!missing-field! UICommandGroupFullscreen not bound
!missing-field! UICommandGroupHelp not bound
!missing-field! UICommandGroupHide not bound
!missing-field! UICommandGroupLearn not bound
!missing-field! UICommandGroupLookup not bound
!missing-field! UICommandGroupMinimizeAndZoom not bound
!missing-field! UICommandGroupNewScene not bound
!missing-field! UICommandGroupPreferences not bound
!missing-field! UICommandGroupPrint not bound
!missing-field! UICommandGroupQuit not bound
!missing-field! UICommandGroupReplace not bound
!missing-field! UICommandGroupRoot not bound
!missing-field! UICommandGroupServices not bound
!missing-field! UICommandGroupShare not bound
!missing-field! UICommandGroupSpeech not bound
!missing-field! UICommandGroupSpelling not bound
!missing-field! UICommandGroupSpellingOptions not bound
!missing-field! UICommandGroupSpellingPanel not bound
!missing-field! UICommandGroupStandardEdit not bound
!missing-field! UICommandGroupSubstitutionOptions not bound
!missing-field! UICommandGroupSubstitutions not bound
!missing-field! UICommandGroupSubstitutionsPanel not bound
!missing-field! UICommandGroupText not bound
!missing-field! UICommandGroupTextColor not bound
!missing-field! UICommandGroupTextSize not bound
!missing-field! UICommandGroupTextStyle not bound
!missing-field! UICommandGroupTextStylePasteboard not bound
!missing-field! UICommandGroupTransformations not bound
!missing-field! UICommandGroupUndoRedo not bound
!missing-field! UICommandGroupView not bound
!missing-field! UICommandGroupWindow not bound
!missing-field! UICommandGroupWritingDirection not bound
!missing-protocol! UICommandBuilder not bound
!missing-protocol! UICommandGroupable not bound
!missing-selector! +UICommand::commandWithTitle:action:propertyList: not bound
!missing-selector! +UICommand::commandWithTitle:action:propertyList:alternates: not bound
!missing-selector! +UICommand::commandWithTitle:discoverabilityTitle:action:propertyList:supportedStates: not bound
!missing-selector! +UICommand::commandWithTitle:discoverabilityTitle:action:propertyList:supportedStates:alternates: not bound
!missing-selector! +UICommand::commandWithTitle:discoverabilityTitle:action:propertyList:supportedStates:input:modifierFlags: not bound
!missing-selector! +UICommand::commandWithTitle:discoverabilityTitle:action:propertyList:supportedStates:input:modifierFlags:alternates: not bound
!missing-selector! +UICommandGroup::groupWithTitle:discoverabilityTitle:identifier:options:children: not bound
!missing-selector! UICommandGroup::discoverabilityTitle not bound
!missing-selector! UICommandGroup::groupByReplacingChildren: not bound
!missing-selector! UICommandGroup::initWithCoder: not bound
!missing-selector! UICommandGroup::menuByReplacingChildren: not bound
!missing-type! UICommandGroup not bound
!missing-selector! +UICommandSystem::contextSystem not bound
!missing-selector! +UICommandSystem::mainSystem not bound
!missing-type! UICommandSystem not bound
!missing-selector! +UIKeyCommand::commandWithTitle:action:input:modifierFlags:propertyList: not bound
!missing-selector! +UIKeyCommand::commandWithTitle:action:input:modifierFlags:propertyList:alternates: not bound
!missing-selector! UICommand::__propertyList not bound
!missing-selector! UICommand::isEnabled not bound
!missing-selector! UICommand::supportedStates not bound
!missing-selector! UICommandValidation::isEnabled not bound
!missing-selector! UICommandValidation::preferredState not bound
!missing-selector! UICommandValidation::preferredTarget not bound
!missing-selector! UICommandValidation::preferredTitle not bound
!missing-selector! UICommandValidation::setEnabled: not bound
!missing-selector! UICommandValidation::setPreferredState: not bound
!missing-selector! UICommandValidation::setPreferredTarget: not bound
!missing-selector! UICommandValidation::setPreferredTitle: not bound
!missing-type! UICommandValidation not bound
!missing-selector! UIGestureRecognizer::initWithCoder: not bound
!missing-selector! UIKeyCommand::action not bound
!missing-selector! UIResponder::buildCommandsWithBuilder: not bound
!missing-selector! UIResponder::validationForCommand: not bound
!missing-type! UIMutableKeyCommand not bound
!missing-selector! UICommand::setEnabled: not bound
!missing-selector! UIKeyCommand::mutableCopy not bound

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

@ -1,3 +1,5 @@
!missing-selector! +UIImage::checkmarkImage not bound
!missing-selector! +UIImage::strokedCheckmarkImage not bound
!missing-selector! NSDiffableDataSourceSnapshot::appendItemsWithIdentifiers: not bound
!missing-selector! NSDiffableDataSourceSnapshot::appendItemsWithIdentifiers:intoSectionWithIdentifier: not bound
!missing-selector! NSDiffableDataSourceSnapshot::appendSectionsWithIdentifiers: not bound
@ -24,6 +26,7 @@
!missing-selector! NSDiffableDataSourceSnapshot::sectionIdentifierForSectionContainingItemIdentifier: not bound
!missing-selector! NSDiffableDataSourceSnapshot::sectionIdentifiers not bound
!missing-selector! UICollectionViewDiffableDataSource::applySnapshot:animatingDifferences: not bound
!missing-selector! UICollectionViewDiffableDataSource::applySnapshot:animatingDifferences:completion: not bound
!missing-selector! UICollectionViewDiffableDataSource::indexPathForItemIdentifier: not bound
!missing-selector! UICollectionViewDiffableDataSource::initWithCollectionView:cellProvider: not bound
!missing-selector! UICollectionViewDiffableDataSource::itemIdentifierForIndexPath: not bound
@ -31,6 +34,7 @@
!missing-selector! UICollectionViewDiffableDataSource::snapshot not bound
!missing-selector! UICollectionViewDiffableDataSource::supplementaryViewProvider not bound
!missing-selector! UITableViewDiffableDataSource::applySnapshot:animatingDifferences: not bound
!missing-selector! UITableViewDiffableDataSource::applySnapshot:animatingDifferences:completion: not bound
!missing-selector! UITableViewDiffableDataSource::defaultRowAnimation not bound
!missing-selector! UITableViewDiffableDataSource::indexPathForItemIdentifier: not bound
!missing-selector! UITableViewDiffableDataSource::initWithTableView:cellProvider: not bound

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

@ -3,6 +3,8 @@
!missing-field! kVTCompressionPropertyKey_AlphaChannelMode not bound
!missing-field! kVTCompressionPropertyKey_GammaLevel not bound
!missing-field! kVTCompressionPropertyKey_TargetQualityForAlpha not bound
!missing-field! kVTCompressionPropertyKey_UsingGPURegistryID not bound
!missing-field! kVTDecompressionPropertyKey_UsingGPURegistryID not bound
!missing-field! kVTPixelTransferPropertyKey_RealTime not bound
!missing-field! kVTVideoEncoderList_GPURegistryID not bound
!missing-field! kVTVideoEncoderList_InstanceLimit not bound
@ -12,6 +14,3 @@
!missing-field! kVTVideoEncoderList_SupportedSelectionProperties not bound
!missing-field! kVTVideoEncoderSpecification_PreferredEncoderGPURegistryID not bound
!missing-field! kVTVideoEncoderSpecification_RequiredEncoderGPURegistryID not bound
## appended from unclassified file
!missing-field! kVTCompressionPropertyKey_UsingGPURegistryID not bound
!missing-field! kVTDecompressionPropertyKey_UsingGPURegistryID not bound

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

@ -22,7 +22,6 @@
!missing-selector! VNCoreMLModel::setInputImageFeatureName: not bound
!missing-selector! VNDetectFaceLandmarksRequest::constellation not bound
!missing-selector! VNDetectFaceLandmarksRequest::setConstellation: not bound
!missing-selector! VNFaceLandmarkRegion2D::occlusionFlagsPerPoint not bound
!missing-selector! VNFaceLandmarkRegion2D::precisionEstimatesPerPoint not bound
!missing-selector! VNFaceObservation::faceCaptureQuality not bound
!missing-selector! VNFeaturePrintObservation::computeDistance:toFeaturePrintObservation:error: not bound

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

@ -5,6 +5,7 @@
!missing-enum! AVAssetWriterStatus not bound
!missing-enum! AVError not bound
!missing-enum! AVKeyValueStatus not bound
!missing-enum! AVMovieWritingOptions not bound
!missing-enum! AVPlayerActionAtItemEnd not bound
!missing-enum! AVPlayerItemStatus not bound
!missing-enum! AVPlayerLooperStatus not bound
@ -23,6 +24,7 @@
!missing-field! AVAudioTimePitchAlgorithmTimeDomain not bound
!missing-field! AVAudioTimePitchAlgorithmVarispeed not bound
!missing-field! AVCaptureLensPositionCurrent not bound
!missing-field! AVContentKeyRequestRequiresValidationDataInSecureTokenKey not bound
!missing-field! AVErrorDeviceKey not bound
!missing-field! AVErrorFileSizeKey not bound
!missing-field! AVErrorFileTypeKey not bound
@ -55,6 +57,11 @@
!missing-field! AVFileTypeTIFF not bound
!missing-field! AVFileTypeWAVE not bound
!missing-field! AVFoundationErrorDomain 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! AVMediaCharacteristicAudible not bound
!missing-field! AVMediaCharacteristicContainsOnlyForcedSubtitles not bound
!missing-field! AVMediaCharacteristicDescribesMusicAndSoundForAccessibility not bound
@ -627,9 +634,11 @@
!missing-field! AVMetadataQuickTimeUserDataKeyURLLink not bound
!missing-field! AVMetadataQuickTimeUserDataKeyWarning not bound
!missing-field! AVMetadataQuickTimeUserDataKeyWriter not bound
!missing-field! AVMovieReferenceRestrictionsKey not bound
!missing-field! AVPlayerItemDidPlayToEndTimeNotification not bound
!missing-field! AVPlayerItemFailedToPlayToEndTimeErrorKey not bound
!missing-field! AVPlayerItemFailedToPlayToEndTimeNotification not bound
!missing-field! AVPlayerItemMediaSelectionDidChangeNotification not bound
!missing-field! AVPlayerItemNewAccessLogEntryNotification not bound
!missing-field! AVPlayerItemNewErrorLogEntryNotification not bound
!missing-field! AVPlayerItemPlaybackStalledNotification not bound
@ -672,6 +681,7 @@
!missing-selector! +AVCompositionTrackSegment::compositionTrackSegmentWithURL:trackID:sourceTimeRange:targetTimeRange: not bound
!missing-selector! +AVFragmentedAsset::fragmentedAssetWithURL:options: not bound
!missing-selector! +AVFragmentedAssetMinder::fragmentedAssetMinderWithAsset:mindingInterval: not bound
!missing-selector! +AVFragmentedMovieMinder::fragmentedMovieMinderWithMovie:mindingInterval: not bound
!missing-selector! +AVMediaSelectionGroup::mediaSelectionOptionsFromArray:filteredAndSortedAccordingToPreferredLanguages: not bound
!missing-selector! +AVMediaSelectionGroup::mediaSelectionOptionsFromArray:withLocale: not bound
!missing-selector! +AVMediaSelectionGroup::mediaSelectionOptionsFromArray:withMediaCharacteristics: not bound
@ -686,12 +696,18 @@
!missing-selector! +AVMetadataItem::metadataItemsFromArray:withKey:keySpace: not bound
!missing-selector! +AVMetadataItem::metadataItemsFromArray:withLocale: not bound
!missing-selector! +AVMetadataItem::metadataItemWithPropertiesOfMetadataItem:valueLoadingHandler: not bound
!missing-selector! +AVMovie::movieTypes not bound
!missing-selector! +AVMovie::movieWithData:options: not bound
!missing-selector! +AVMovie::movieWithURL:options: not bound
!missing-selector! +AVMutableAudioMix::audioMix not bound
!missing-selector! +AVMutableAudioMixInputParameters::audioMixInputParameters not bound
!missing-selector! +AVMutableAudioMixInputParameters::audioMixInputParametersWithTrack: not bound
!missing-selector! +AVMutableComposition::composition not bound
!missing-selector! +AVMutableComposition::compositionWithURLAssetInitializationOptions: not bound
!missing-selector! +AVMutableMetadataItem::metadataItem 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! +AVPlayer::playerWithPlayerItem: not bound
!missing-selector! +AVPlayer::playerWithURL: not bound
!missing-selector! +AVPlayerItem::playerItemWithAsset: not bound
@ -788,6 +804,7 @@
!missing-selector! AVAudioSession::allowHapticsAndSystemSoundsDuringRecording not bound
!missing-selector! AVAudioSession::setAllowHapticsAndSystemSoundsDuringRecording:error: not bound
!missing-selector! AVAudioSinkNode::initWithReceiverBlock: not bound
!missing-selector! AVAudioSourceNode::initWithFormat:renderBlock: not bound
!missing-selector! AVAudioSourceNode::initWithRenderBlock: not bound
!missing-selector! AVComposition::naturalSize not bound
!missing-selector! AVComposition::tracks not bound
@ -818,6 +835,18 @@
!missing-selector! AVFragmentedAssetMinder::mindingInterval not bound
!missing-selector! AVFragmentedAssetMinder::removeFragmentedAsset: not bound
!missing-selector! AVFragmentedAssetMinder::setMindingInterval: 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! AVMediaSelection::asset not bound
!missing-selector! AVMediaSelection::mediaSelectionCriteriaCanBeAppliedAutomaticallyToMediaSelectionGroup: not bound
!missing-selector! AVMediaSelection::selectedMediaOptionInMediaSelectionGroup: not bound
@ -862,6 +891,24 @@
!missing-selector! AVMetadataItemValueRequest::metadataItem not bound
!missing-selector! AVMetadataItemValueRequest::respondWithError: not bound
!missing-selector! AVMetadataItemValueRequest::respondWithValue: 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! AVMutableAudioMix::inputParameters not bound
!missing-selector! AVMutableAudioMix::setInputParameters: not bound
!missing-selector! AVMutableAudioMixInputParameters::audioTimePitchAlgorithm not bound
@ -932,6 +979,85 @@
!missing-selector! AVMutableMetadataItem::startDate not bound
!missing-selector! AVMutableMetadataItem::time not bound
!missing-selector! AVMutableMetadataItem::value 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-selector! AVMutableTimedMetadataGroup::items not bound
!missing-selector! AVMutableTimedMetadataGroup::setItems: not bound
!missing-selector! AVMutableTimedMetadataGroup::setTimeRange: not bound
@ -1165,12 +1291,18 @@
!missing-type! AVFragmentedAsset not bound
!missing-type! AVFragmentedAssetMinder not bound
!missing-type! AVFragmentedAssetTrack not bound
!missing-type! AVFragmentedMovie not bound
!missing-type! AVFragmentedMovieMinder not bound
!missing-type! AVFragmentedMovieTrack not bound
!missing-type! AVMediaDataStorage not bound
!missing-type! AVMediaSelection not bound
!missing-type! AVMediaSelectionGroup not bound
!missing-type! AVMediaSelectionOption not bound
!missing-type! AVMetadataGroup not bound
!missing-type! AVMetadataItem not bound
!missing-type! AVMetadataItemValueRequest not bound
!missing-type! AVMovie not bound
!missing-type! AVMovieTrack not bound
!missing-type! AVMutableAudioMix not bound
!missing-type! AVMutableAudioMixInputParameters not bound
!missing-type! AVMutableComposition not bound
@ -1178,6 +1310,8 @@
!missing-type! AVMutableDateRangeMetadataGroup not bound
!missing-type! AVMutableMediaSelection not bound
!missing-type! AVMutableMetadataItem not bound
!missing-type! AVMutableMovie not bound
!missing-type! AVMutableMovieTrack not bound
!missing-type! AVMutableTimedMetadataGroup not bound
!missing-type! AVPlayer not bound
!missing-type! AVPlayerItem not bound
@ -1198,138 +1332,3 @@
!missing-type! AVSemanticSegmentationMatte not bound
!missing-type! AVTimedMetadataGroup not bound
!missing-type! AVURLAsset not bound
## 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

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

@ -83,6 +83,8 @@
!missing-field! CNLabelContactRelationGrandchild not bound
!missing-field! CNLabelContactRelationGrandchildOrSiblingsChild not bound
!missing-field! CNLabelContactRelationGranddaughter not bound
!missing-field! CNLabelContactRelationGranddaughterDaughtersDaughter not bound
!missing-field! CNLabelContactRelationGranddaughterSonsDaughter not bound
!missing-field! CNLabelContactRelationGrandfather not bound
!missing-field! CNLabelContactRelationGrandfatherFathersFather not bound
!missing-field! CNLabelContactRelationGrandfatherMothersFather not bound
@ -97,6 +99,8 @@
!missing-field! CNLabelContactRelationGrandnieceSistersGranddaughter not bound
!missing-field! CNLabelContactRelationGrandparent not bound
!missing-field! CNLabelContactRelationGrandson not bound
!missing-field! CNLabelContactRelationGrandsonDaughtersSon not bound
!missing-field! CNLabelContactRelationGrandsonSonsSon not bound
!missing-field! CNLabelContactRelationGranduncle not bound
!missing-field! CNLabelContactRelationGreatGrandchild not bound
!missing-field! CNLabelContactRelationGreatGrandchildOrSiblingsGrandchild not bound

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

@ -1,9 +1,12 @@
!missing-enum! NSBatchInsertRequestResultType not bound
!missing-enum! NSPersistentCloudKitContainerSchemaInitializationOptions not bound
!missing-field! NSPersistentHistoryTokenKey not bound
!missing-field! NSPersistentStoreRemoteChangeNotification not bound
!missing-field! NSPersistentStoreRemoteChangeNotificationPostOptionKey not bound
!missing-field! NSPersistentStoreURLKey not bound
!missing-protocol-member! NSFetchedResultsControllerDelegate::controller:didChangeContentWithDifference: not found
!missing-protocol-member! NSFetchedResultsControllerDelegate::controller:didChangeContentWithSnapshot: not found
!missing-selector! +NSBatchInsertRequest::batchInsertRequestWithEntityName:objects: not bound
!missing-selector! +NSPersistentHistoryChange::entityDescription not bound
!missing-selector! +NSPersistentHistoryChange::entityDescriptionWithContext: not bound
!missing-selector! +NSPersistentHistoryChange::fetchRequest not bound
@ -13,34 +16,10 @@
!missing-selector! +NSPersistentHistoryTransaction::fetchRequest not bound
!missing-selector! NSAttributeDescription::preservesValueInHistoryOnDeletion not bound
!missing-selector! NSAttributeDescription::setPreservesValueInHistoryOnDeletion: not bound
!missing-selector! NSDerivedAttributeDescription::derivationExpression not bound
!missing-selector! NSDerivedAttributeDescription::setDerivationExpression: not bound
!missing-selector! NSPersistentCloudKitContainer::recordForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainer::recordsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::containerIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerOptions::initWithContainerIdentifier: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::setShouldInitializeSchema: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::shouldInitializeSchema not bound
!missing-selector! NSPersistentHistoryChangeRequest::fetchRequest not bound
!missing-selector! NSPersistentHistoryChangeRequest::setFetchRequest: not bound
!missing-selector! NSPersistentStoreDescription::cloudKitContainerOptions not bound
!missing-selector! NSPersistentStoreDescription::setCloudKitContainerOptions: not bound
!missing-type! NSDerivedAttributeDescription not bound
!missing-type! NSPersistentCloudKitContainer not bound
!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
@ -48,5 +27,22 @@
!missing-selector! NSBatchInsertRequest::setResultType: not bound
!missing-selector! NSBatchInsertResult::result not bound
!missing-selector! NSBatchInsertResult::resultType not bound
!missing-selector! NSDerivedAttributeDescription::derivationExpression not bound
!missing-selector! NSDerivedAttributeDescription::setDerivationExpression: not bound
!missing-selector! NSPersistentCloudKitContainer::initializeCloudKitSchemaWithOptions:error: not bound
!missing-selector! NSPersistentCloudKitContainer::recordForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDForManagedObjectID: not bound
!missing-selector! NSPersistentCloudKitContainer::recordIDsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainer::recordsForManagedObjectIDs: not bound
!missing-selector! NSPersistentCloudKitContainerOptions::containerIdentifier not bound
!missing-selector! NSPersistentCloudKitContainerOptions::initWithContainerIdentifier: not bound
!missing-selector! NSPersistentHistoryChangeRequest::fetchRequest not bound
!missing-selector! NSPersistentHistoryChangeRequest::setFetchRequest: not bound
!missing-selector! NSPersistentStoreCoordinator::currentPersistentHistoryTokenFromStores: not bound
!missing-selector! NSPersistentStoreDescription::cloudKitContainerOptions not bound
!missing-selector! NSPersistentStoreDescription::setCloudKitContainerOptions: not bound
!missing-type! NSBatchInsertRequest not bound
!missing-type! NSBatchInsertResult not bound
!missing-type! NSDerivedAttributeDescription not bound
!missing-type! NSPersistentCloudKitContainer not bound
!missing-type! NSPersistentCloudKitContainerOptions not bound

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

@ -19,20 +19,25 @@
!missing-selector! +MLParameterKey::linkedModelSearchPath not bound
!missing-selector! +MLParameterKey::miniBatchSize not bound
!missing-selector! +MLParameterKey::momentum not bound
!missing-selector! +MLParameterKey::removeExamples not bound
!missing-selector! +MLParameterKey::seed not bound
!missing-selector! +MLParameterKey::shuffle not bound
!missing-selector! +MLUpdateTask::updateTaskForModelAtURL:trainingData:configuration:completionHandler:error: not bound
!missing-selector! +MLUpdateTask::updateTaskForModelAtURL:trainingData:configuration:progressHandlers:error: not bound
!missing-selector! MLKey::name not bound
!missing-selector! MLKey::scope not bound
!missing-selector! MLModel::predictionsFromBatch:error: not bound
!missing-selector! MLModelConfiguration::allowLowPrecisionAccumulationOnGPU not bound
!missing-selector! MLModelConfiguration::modelParameters not bound
!missing-selector! MLModelConfiguration::parameters not bound
!missing-selector! MLModelConfiguration::preferredMetalDevice not bound
!missing-selector! MLModelConfiguration::setAllowLowPrecisionAccumulationOnGPU: not bound
!missing-selector! MLModelConfiguration::setModelParameters: not bound
!missing-selector! MLModelConfiguration::setParameters: not bound
!missing-selector! MLModelConfiguration::setPreferredMetalDevice: not bound
!missing-selector! MLModelConfiguration::setUpdateParameters: not bound
!missing-selector! MLModelConfiguration::updateParameters not bound
!missing-selector! MLModelDescription::isUpdatable not bound
!missing-selector! MLModelDescription::parameterDescriptionsByKey not bound
!missing-selector! MLModelDescription::trainingInputDescriptionsByName not bound
!missing-selector! MLNumericConstraint::enumeratedNumbers not bound
!missing-selector! MLNumericConstraint::maxNumber not bound
@ -40,6 +45,7 @@
!missing-selector! MLParameterDescription::defaultValue not bound
!missing-selector! MLParameterDescription::key not bound
!missing-selector! MLParameterDescription::numericConstraint not bound
!missing-selector! MLParameterKey::scopedTo: not bound
!missing-selector! MLTask::cancel not bound
!missing-selector! MLTask::error not bound
!missing-selector! MLTask::resume not bound
@ -61,11 +67,3 @@
!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

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

@ -0,0 +1,2 @@
!missing-pinvoke! CMTimebaseSetMasterClock is not bound
!missing-pinvoke! CMTimebaseSetMasterTimebase is not bound

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

@ -0,0 +1,4 @@
!missing-field! kCTFontFeatureSampleTextKey not bound
!missing-field! kCTFontFeatureTooltipTextKey not bound
!missing-pinvoke! CTFontCreateForStringWithLanguage is not bound
!missing-pinvoke! CTGlyphInfoGetGlyph is not bound

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

@ -50,7 +50,10 @@
!missing-selector! HKQuantitySeriesSampleQuery::orderByQuantitySampleStartDate not bound
!missing-selector! HKQuantitySeriesSampleQuery::setIncludeSample: not bound
!missing-selector! HKQuantitySeriesSampleQuery::setOrderByQuantitySampleStartDate: not bound
!missing-selector! HKSampleType::isMaximumDurationRestricted not bound
!missing-selector! HKSampleType::isMinimumDurationRestricted not bound
!missing-selector! HKSampleType::maximumAllowedDuration not bound
!missing-selector! HKSampleType::minimumAllowedDuration not bound
!missing-selector! HKStatistics::duration not bound
!missing-selector! HKStatistics::durationForSource: not bound
!missing-type! HKAudiogramSample not bound
@ -62,7 +65,3 @@
!missing-type! HKHeartbeatSeriesQuery not bound
!missing-type! HKHeartbeatSeriesSample not bound
!wrong-base-type! HKCumulativeQuantitySeriesSample expected HKCumulativeQuantitySample actual HKQuantitySample
## appended from unclassified file
!missing-selector! HKSampleType::isMaximumDurationRestricted not bound
!missing-selector! HKSampleType::isMinimumDurationRestricted not bound
!missing-selector! HKSampleType::minimumAllowedDuration not bound

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

@ -1,4 +1,3 @@
## appended from unclassified file
!missing-enum! HMHomeManagerAuthorizationStatus not bound
!missing-protocol! HMNetworkConfigurationProfileDelegate not bound
!missing-protocol-member! HMHomeManagerDelegate::homeManager:didUpdateAuthorizationStatus: not found

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

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

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

@ -16,6 +16,7 @@
!missing-enum! INAddMediaMediaDestinationUnsupportedReason not bound
!missing-enum! INAddMediaMediaItemUnsupportedReason not bound
!missing-enum! INAddTasksTargetTaskListConfirmationReason not bound
!missing-enum! INAddTasksTemporalEventTriggerUnsupportedReason not bound
!missing-enum! INCallAudioRoute not bound
!missing-enum! INDeleteTasksIntentResponseCode not bound
!missing-enum! INDeleteTasksTaskListUnsupportedReason not bound
@ -33,6 +34,7 @@
!missing-enum! INReservationStatus not bound
!missing-enum! INSearchForMediaIntentResponseCode not bound
!missing-enum! INSearchForMediaMediaItemUnsupportedReason not bound
!missing-enum! INSetTaskAttributeTemporalEventTriggerUnsupportedReason not bound
!missing-enum! INSnoozeTasksIntentResponseCode not bound
!missing-enum! INSnoozeTasksTaskUnsupportedReason not bound
!missing-enum! INStartCallCallCapabilityUnsupportedReason not bound
@ -54,6 +56,7 @@
!missing-protocol! INUpdateMediaAffinityIntentHandling not bound
!missing-protocol-member! INAddTasksIntentHandling::resolvePriorityForAddTasks:withCompletion: not found
!missing-protocol-member! INAddTasksIntentHandling::resolveTargetTaskListForAddTasks:completion: not found
!missing-protocol-member! INAddTasksIntentHandling::resolveTemporalEventTriggerForAddTasks:completion: not found
!missing-protocol-member! INPlayMediaIntentHandling::resolveMediaItemsForPlayMedia:withCompletion: not found
!missing-protocol-member! INPlayMediaIntentHandling::resolvePlaybackQueueLocationForPlayMedia:withCompletion: not found
!missing-protocol-member! INPlayMediaIntentHandling::resolvePlaybackRepeatModeForPlayMedia:withCompletion: not found
@ -64,9 +67,11 @@
!missing-protocol-member! INSearchForNotebookItemsIntentHandling::resolveTemporalEventTriggerTypesForSearchForNotebookItems:withCompletion: not found
!missing-protocol-member! INSetTaskAttributeIntentHandling::resolvePriorityForSetTaskAttribute:withCompletion: not found
!missing-protocol-member! INSetTaskAttributeIntentHandling::resolveTaskTitleForSetTaskAttribute:withCompletion: not found
!missing-protocol-member! INSetTaskAttributeIntentHandling::resolveTemporalEventTriggerForSetTaskAttribute:completion: not found
!missing-selector! +INAddMediaMediaDestinationResolutionResult::unsupportedForReason: not bound
!missing-selector! +INAddMediaMediaItemResolutionResult::unsupportedForReason: not bound
!missing-selector! +INAddTasksTargetTaskListResolutionResult::confirmationRequiredWithTaskListToConfirm:forReason: not bound
!missing-selector! +INAddTasksTemporalEventTriggerResolutionResult::unsupportedForReason: not bound
!missing-selector! +INCallCapabilityResolutionResult::confirmationRequiredWithCallCapabilityToConfirm: not bound
!missing-selector! +INCallCapabilityResolutionResult::successWithResolvedCallCapability: not bound
!missing-selector! +INDeleteTasksTaskListResolutionResult::unsupportedForReason: not bound
@ -115,6 +120,7 @@
!missing-selector! +INPreferences::requestSiriAuthorization: not bound
!missing-selector! +INPreferences::siriAuthorizationStatus not bound
!missing-selector! +INSearchForMediaMediaItemResolutionResult::unsupportedForReason: not bound
!missing-selector! +INSetTaskAttributeTemporalEventTriggerResolutionResult::unsupportedForReason: not bound
!missing-selector! +INSnoozeTasksTaskResolutionResult::unsupportedForReason: not bound
!missing-selector! +INSpeedResolutionResult::confirmationRequiredWithSpeedToConfirm: not bound
!missing-selector! +INSpeedResolutionResult::disambiguationWithSpeedToDisambiguate: not bound
@ -146,6 +152,7 @@
!missing-selector! INAddTasksIntent::initWithTargetTaskList:taskTitles:spatialEventTrigger:temporalEventTrigger:priority: not bound
!missing-selector! INAddTasksIntent::priority not bound
!missing-selector! INAddTasksTargetTaskListResolutionResult::initWithTaskListResolutionResult: not bound
!missing-selector! INAddTasksTemporalEventTriggerResolutionResult::initWithTemporalEventTriggerResolutionResult: not bound
!missing-selector! INAirline::iataCode not bound
!missing-selector! INAirline::icaoCode not bound
!missing-selector! INAirline::initWithName:iataCode:icaoCode: not bound
@ -269,6 +276,7 @@
!missing-selector! INSetTaskAttributeIntent::initWithTargetTask:taskTitle:status:priority:spatialEventTrigger:temporalEventTrigger: not bound
!missing-selector! INSetTaskAttributeIntent::priority not bound
!missing-selector! INSetTaskAttributeIntent::taskTitle not bound
!missing-selector! INSetTaskAttributeTemporalEventTriggerResolutionResult::initWithTemporalEventTriggerResolutionResult: not bound
!missing-selector! INSnoozeTasksIntent::all not bound
!missing-selector! INSnoozeTasksIntent::initWithTasks:nextTriggerTime:all: not bound
!missing-selector! INSnoozeTasksIntent::nextTriggerTime not bound
@ -284,6 +292,8 @@
!missing-selector! INStartCallIntent::callCapability not bound
!missing-selector! INStartCallIntent::contacts not bound
!missing-selector! INStartCallIntent::destinationType not bound
!missing-selector! INStartCallIntent::initWithAudioRoute:destinationType:contacts:recordTypeForRedialing:callCapability: not bound
!missing-selector! INStartCallIntent::recordTypeForRedialing 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
@ -325,6 +335,7 @@
!missing-type! INAddMediaMediaDestinationResolutionResult not bound
!missing-type! INAddMediaMediaItemResolutionResult not bound
!missing-type! INAddTasksTargetTaskListResolutionResult not bound
!missing-type! INAddTasksTemporalEventTriggerResolutionResult not bound
!missing-type! INAirline not bound
!missing-type! INAirport not bound
!missing-type! INAirportGate not bound
@ -365,6 +376,7 @@
!missing-type! INSearchForMediaIntentResponse not bound
!missing-type! INSearchForMediaMediaItemResolutionResult not bound
!missing-type! INSeat not bound
!missing-type! INSetTaskAttributeTemporalEventTriggerResolutionResult not bound
!missing-type! INSnoozeTasksIntent not bound
!missing-type! INSnoozeTasksIntentResponse not bound
!missing-type! INSnoozeTasksTaskResolutionResult not bound
@ -388,17 +400,3 @@
!missing-type! INVocabulary not bound
!missing-type! INVolumeResolutionResult not bound
!unknown-type! INParameter bound
## appended from unclassified file
!missing-enum! INAddTasksTemporalEventTriggerUnsupportedReason not bound
!missing-enum! INSetTaskAttributeTemporalEventTriggerUnsupportedReason not bound
!missing-protocol-member! INAddTasksIntentHandling::resolveTemporalEventTriggerForAddTasks:completion: not found
!missing-protocol-member! INSetTaskAttributeIntentHandling::resolveTemporalEventTriggerForSetTaskAttribute:completion: not found
!missing-selector! +INAddTasksTemporalEventTriggerResolutionResult::unsupportedForReason: not bound
!missing-selector! +INSetTaskAttributeTemporalEventTriggerResolutionResult::unsupportedForReason: not bound
!missing-selector! INAddTasksTemporalEventTriggerResolutionResult::initWithTemporalEventTriggerResolutionResult: not bound
!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

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

@ -3,6 +3,7 @@
!missing-enum! SCNLightProbeType not bound
!missing-enum! SCNLightProbeUpdateType not bound
!missing-field! SCNHitTestOptionIgnoreLightArea not bound
!missing-field! SCNLightingModelShadowOnly not bound
!missing-field! SCNLightTypeArea not bound
!missing-protocol-member! SCNSceneRenderer::currentViewport not found
!missing-protocol-member! SCNSceneRenderer::isTemporalAntialiasingEnabled not found
@ -65,5 +66,3 @@
!missing-selector! SCNScene::setScreenSpaceReflectionStride: not bound
!missing-selector! SCNScene::setWantsScreenSpaceReflection: not bound
!missing-selector! SCNScene::wantsScreenSpaceReflection not bound
## appended from unclassified file
!missing-field! SCNLightingModelShadowOnly not bound

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

@ -0,0 +1,2 @@
!missing-selector! +UIImage::checkmarkImage not bound
!missing-selector! +UIImage::strokedCheckmarkImage not bound

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

@ -7,6 +7,7 @@
!missing-enum! WKExtendedRuntimeSessionErrorCode not bound
!missing-enum! WKExtendedRuntimeSessionInvalidationReason not bound
!missing-enum! WKExtendedRuntimeSessionState not bound
!missing-enum! WKInterfaceVolumeControlOrigin not bound
!missing-field! WKExtendedRuntimeSessionErrorDomain not bound
!missing-field! WKTextContentTypeAddressCity not bound
!missing-field! WKTextContentTypeAddressCityAndState not bound
@ -44,6 +45,7 @@
!missing-selector! WKExtendedRuntimeSession::delegate not bound
!missing-selector! WKExtendedRuntimeSession::expirationDate not bound
!missing-selector! WKExtendedRuntimeSession::invalidate not bound
!missing-selector! WKExtendedRuntimeSession::notifyUserWithHaptic:repeatHandler: not bound
!missing-selector! WKExtendedRuntimeSession::setDelegate: not bound
!missing-selector! WKExtendedRuntimeSession::start not bound
!missing-selector! WKExtendedRuntimeSession::startAtDate: not bound
@ -70,10 +72,8 @@
!missing-selector! WKInterfaceTextField::setTextColor: not bound
!missing-selector! WKInterfaceTextField::setTextContentType: not bound
!missing-selector! WKInterfaceVolumeControl::focus not bound
!missing-selector! WKInterfaceVolumeControl::init not bound
!missing-selector! WKInterfaceVolumeControl::initWithOrigin: not bound
!missing-selector! WKInterfaceVolumeControl::resignFocus not bound
!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