[release/7.0.1xx-xcode14.2] Bump bindings to Xcode 14.2 (#17010)

This commit is contained in:
Alex Soto 2022-12-14 06:26:38 -05:00 коммит произвёл GitHub
Родитель c7cabd81e5
Коммит c45e84cd34
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
34 изменённых файлов: 14159 добавлений и 13866 удалений

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

@ -222,9 +222,9 @@ MACCATALYST_NUGET_VERSION_NO_METADATA=$(MACCATALYST_NUGET_VERSION)$(NUGET_PREREL
MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_BUILD_METADATA)
# Xcode version should have both a major and a minor version (even if the minor version is 0)
XCODE_VERSION=14.1
XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_14.1.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode_14.1.0.app/Contents/Developer
XCODE_VERSION=14.2
XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_14.2.xip
XCODE_DEVELOPER_ROOT=/Applications/Xcode_14.2.0.app/Contents/Developer
XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2)
# Tell both Xcode and our build logic which Xcode we're using.

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

@ -66,11 +66,11 @@ MAC_PACKAGE_VERSION=9.0.0.$(MAC_COMMIT_DISTANCE)
# WARNING: Do **not** use versions higher than the available Xcode SDK or else we will have issues with mtouch (See https://github.com/xamarin/xamarin-macios/issues/7705)
# When bumping the major macOS version in MACOS_NUGET_VERSION also update the macOS version where we execute on bots in jenkins/Jenkinsfile (in the 'node' element)
IOS_NUGET_OS_VERSION=16.1
IOS_NUGET_OS_VERSION=16.2
TVOS_NUGET_OS_VERSION=16.1
WATCHOS_NUGET_OS_VERSION=9.1
MACOS_NUGET_OS_VERSION=13.0
MACCATALYST_NUGET_OS_VERSION=16.1
MACOS_NUGET_OS_VERSION=13.1
MACCATALYST_NUGET_OS_VERSION=16.2
# Defines the default platform version if it's not specified in the TFM. The default should not change for a given .NET version:

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

@ -51,6 +51,7 @@
<string>15.4</string>
<string>16.0</string>
<string>16.1</string>
<string>16.2</string>
</array>
<key>tvOS</key>
<array>
@ -130,6 +131,7 @@
<string>15.2</string>
<string>15.4</string>
<string>16.1</string>
<string>16.2</string>
</array>
</dict>
<key>MacCatalystVersionMap</key>
@ -160,6 +162,8 @@
<string>12.3</string>
<key>16.1</key>
<string>13.0</string>
<key>16.2</key>
<string>13.1</string>
</dict>
<key>RecommendedXcodeVersion</key>
<string>@XCODE_VERSION@</string>

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

@ -26,6 +26,7 @@
<string>12.1</string>
<string>12.3</string>
<string>13.0</string>
<string>13.1</string>
</array>
</dict>
<key>RecommendedXcodeVersion</key>

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

@ -10,6 +10,8 @@ namespace BusinessChat {
Dark,
}
[Deprecated (PlatformName.MacOSX, 13, 1)]
[Deprecated (PlatformName.iOS, 16, 2)]
[Mac (10,13,4), iOS (11,3)]
public enum BCParameterName {

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

@ -24,6 +24,8 @@ using NativeHandle = System.IntPtr;
namespace BusinessChat {
[Deprecated (PlatformName.MacOSX, 13, 1)]
[Deprecated (PlatformName.iOS, 16, 2)]
[Mac (10,13,4), iOS (11,3)]
[BaseType (typeof(UIControl))]
[DisableDefaultCtor]
@ -34,6 +36,8 @@ namespace BusinessChat {
}
[Deprecated (PlatformName.MacOSX, 13, 1)]
[Deprecated (PlatformName.iOS, 16, 2)]
[Mac (10,13,4), iOS (11,3)]
[BaseType (typeof(NSObject))]
[DisableDefaultCtor]

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

@ -1330,6 +1330,14 @@ namespace GameKit {
[iOS (8,0), Mac (10,10)]
[Export ("startBrowsingForNearbyPlayersWithHandler:")]
void StartBrowsingForNearbyPlayers ([NullAllowed] Action<GKPlayer, bool> handler);
[Mac (13,1), iOS (16,2), NoTV]
[Export ("startGroupActivityWithPlayerHandler:")]
void StartGroupActivity (Action<GKPlayer> handler);
[Mac (13,1), iOS (16,2), NoTV]
[Export ("stopGroupActivity")]
void StopGroupActivity ();
}
[NoWatch]

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

@ -2070,6 +2070,30 @@ namespace Intents {
NoMatchingCall = 1,
}
[NoWatch, NoTV, Mac (13,1), iOS (16,2), MacCatalyst (16,2)]
[Native]
public enum INAnswerCallIntentResponseCode : long {
Unspecified = 0,
Ready,
ContinueInApp,
InProgress,
Success,
Failure,
FailureRequiringAppLaunch,
}
[NoWatch, NoTV, Mac (13,1), iOS (16,2), MacCatalyst (16,2)]
[Native]
public enum INHangUpCallIntentResponseCode : long {
Unspecified = 0,
Ready,
InProgress,
Success,
Failure,
FailureRequiringAppLaunch,
FailureNoCallToHangUp,
}
[iOS (10, 0)]
[Mac (10, 12, 0)]
[Watch (3, 2)]
@ -2194,6 +2218,14 @@ namespace Intents {
[MacCatalyst (14,0)]
[Field ("INStartCallIntentIdentifier")]
StartCall,
[NoWatch, NoTV, Mac (13,1), iOS (16,2), MacCatalyst (16,2)]
[Field ("INAnswerCallIntentIdentifier")]
AnswerCall,
[NoWatch, NoTV, Mac (13,1), iOS (16,2), MacCatalyst (16,2)]
[Field ("INHangUpCallIntentIdentifier")]
HangUpCall,
}
[iOS (10, 2)]
@ -14436,6 +14468,89 @@ namespace Intents {
string GroupId { get; }
}
[NoWatch, NoTV, Mac (13,1), iOS (16,2), MacCatalyst (16,2)]
[BaseType (typeof (INIntent))]
interface INAnswerCallIntent {
[Export ("initWithAudioRoute:callIdentifier:")]
[DesignatedInitializer]
IntPtr Constructor (INCallAudioRoute audioRoute, [NullAllowed] string callIdentifier);
[NoTV, NoMac, NoiOS]
[Export ("audioRoute", ArgumentSemantic.Assign)]
INCallAudioRoute AudioRoute { get; }
[NoWatch, NoTV, NoMac, NoiOS]
[NullAllowed, Export ("callIdentifier")]
string CallIdentifier { get; }
}
[NoWatch, NoTV, Mac (13,1), iOS (16,2), MacCatalyst (16,2)]
[Protocol]
interface INAnswerCallIntentHandling {
[Abstract]
[Export ("handleAnswerCall:completion:")]
void HandleAnswerCall (INAnswerCallIntent intent, Action<INAnswerCallIntentResponse> completion);
[Export ("confirmAnswerCall:completion:")]
void ConfirmAnswerCall (INAnswerCallIntent intent, Action<INAnswerCallIntentResponse> completion);
}
[NoWatch, NoTV, Mac (13,1), iOS (16,2), MacCatalyst (16,2)]
[BaseType (typeof (INIntentResponse))]
[DisableDefaultCtor]
interface INAnswerCallIntentResponse {
[Export ("initWithCode:userActivity:")]
[DesignatedInitializer]
IntPtr Constructor (INAnswerCallIntentResponseCode code, [NullAllowed] NSUserActivity userActivity);
[Export ("code")]
INAnswerCallIntentResponseCode Code { get; }
[NoMac]
[NullAllowed]
[Export ("callRecords", ArgumentSemantic.Copy)]
INCallRecord[] CallRecords { get; set; }
}
[NoWatch, NoTV, Mac (13,1), iOS (16,2), MacCatalyst (16,2)]
[BaseType (typeof (INIntent))]
interface INHangUpCallIntent {
[NoWatch, Mac (13,1), iOS (16,2)]
[Export ("initWithCallIdentifier:")]
[DesignatedInitializer]
IntPtr Constructor ([NullAllowed] string callIdentifier);
[NoWatch, NoMac, NoiOS]
[NullAllowed, Export ("callIdentifier")]
string CallIdentifier { get; }
}
[NoWatch, NoTV, Mac (13,1), iOS (16,2), MacCatalyst (16,2)]
[Protocol]
interface INHangUpCallIntentHandling {
[Abstract]
[Export ("handleHangUpCall:completion:")]
void HandleHangUpCall (INHangUpCallIntent intent, Action<INHangUpCallIntentResponse> completion);
[Export ("confirmHangUpCall:completion:")]
void ConfirmHangUpCall (INHangUpCallIntent intent, Action<INHangUpCallIntentResponse> completion);
}
[NoWatch, NoTV, Mac (13,1), iOS (16,2), MacCatalyst (16,2)]
[BaseType (typeof (INIntentResponse))]
[DisableDefaultCtor]
interface INHangUpCallIntentResponse {
[Export ("initWithCode:userActivity:")]
[DesignatedInitializer]
IntPtr Constructor (INHangUpCallIntentResponseCode code, [NullAllowed] NSUserActivity userActivity);
[Export ("code")]
INHangUpCallIntentResponseCode Code { get; }
}
}

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

@ -86,6 +86,10 @@ namespace ScreenCaptureKit {
[Field ("SCStreamFrameInfoDirtyRects")]
NSString DirtyRects { get; }
[Mac (13,1)]
[Field ("SCStreamFrameInfoScreenRect")]
NSString ScreenRect { get; }
}
[NoiOS, NoTV, NoWatch, Mac (12,3), NoMacCatalyst]
@ -125,6 +129,10 @@ namespace ScreenCaptureKit {
[Export ("onScreen")]
bool OnScreen { [Bind ("isOnScreen")] get; }
[Mac (13, 1)]
[Export ("active")]
bool Active { [Bind ("isActive")] get; }
}

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

@ -28,6 +28,7 @@ using UIWindow=AppKit.NSWindow;
#else
using UIKit;
using ICloudSharingControllerDelegate=UIKit.IUICloudSharingControllerDelegate;
using NSMenuItem = Foundation.NSObject;
#endif
#if !NET
@ -300,6 +301,11 @@ namespace SharedWithYou {
[Export ("headerImage", ArgumentSemantic.Strong)]
UIImage HeaderImage { get; set; }
[NoiOS, NoMacCatalyst]
[Mac (13,1)]
[Export ("menuFormRepresentation")]
NSMenuItem MenuFormRepresentation { get; }
[NoMac]
[Wrap ("WeakCloudSharingControllerDelegate")]
[NullAllowed]

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

@ -24772,6 +24772,10 @@ namespace UIKit {
[Export ("calendarView:decorationForDateComponents:")]
[return: NullAllowed]
UICalendarViewDecoration GetDecoration (UICalendarView calendarView, NSDateComponents dateComponents);
[iOS (16,2), MacCatalyst (16,0)]
[Export ("calendarView:didChangeVisibleDateComponentsFrom:")]
void DidChangeVisibleDateComponents (UICalendarView calendarView, NSDateComponents previousDateComponents);
}
[NoWatch, NoTV, iOS (16,0), MacCatalyst (16,0)]

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -491,3 +491,6 @@
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexCoordinates = 6 not bound
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexInstanceIndex = 7 not bound
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexInstanceIndexCoordinates = 8 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexBit = 16777216 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexFloat16 = 285212704 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexFloat32 = 285212736 not bound

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

@ -188,3 +188,11 @@
!missing-selector! MPSGraph::inverseOfTensor:name: not bound
!missing-selector! MPSGraph::spaceToBatchTensor:spatialAxes:batchAxis:blockDimensions:usePixelShuffleOrder:name: not bound
!missing-selector! MPSGraph::spaceToBatchTensor:spatialAxesTensor:batchAxisTensor:blockDimensionsTensor:usePixelShuffleOrder:name: not bound
!missing-selector! MPSGraph::dequantizeTensor:scale:zeroPoint:dataType:name: not bound
!missing-selector! MPSGraph::dequantizeTensor:scaleTensor:zeroPoint:dataType:axis:name: not bound
!missing-selector! MPSGraph::dequantizeTensor:scaleTensor:zeroPointTensor:dataType:axis:name: not bound
!missing-selector! MPSGraph::quantizeTensor:scale:zeroPoint:dataType:name: not bound
!missing-selector! MPSGraph::quantizeTensor:scaleTensor:zeroPoint:dataType:axis:name: not bound
!missing-selector! MPSGraph::quantizeTensor:scaleTensor:zeroPointTensor:dataType:axis:name: not bound
!missing-selector! MPSGraph::sampleGridWithSourceTensor:coordinateTensor:layout:normalizeCoordinates:relativeCoordinates:alignCorners:paddingMode:nearestRoundingMode:constantValue:name: not bound
!missing-selector! MPSGraph::sampleGridWithSourceTensor:coordinateTensor:layout:normalizeCoordinates:relativeCoordinates:alignCorners:paddingMode:samplingMode:constantValue:name: not bound

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

@ -0,0 +1,6 @@
# The API is marked as unfinished in the header comments so let's not bind it for now
!missing-selector! SRApplicationUsage::supplementalCategories not bound
!missing-selector! SRKeyboardMetrics::longWordTouchUpDown not bound
!missing-selector! SRKeyboardMetrics::touchUpDown not bound
!missing-selector! SRSupplementalCategory::identifier not bound
!missing-type! SRSupplementalCategory not bound

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

@ -405,3 +405,4 @@
!missing-field! UIListSeparatorAutomaticInsets not bound
!incorrect-protocol-member! UISearchSuggestion::localizedAttributedSuggestion is REQUIRED and should be abstract
!incorrect-protocol-member! UICalendarViewDelegate::calendarView:decorationForDateComponents: is OPTIONAL and should NOT be abstract

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

@ -9833,3 +9833,27 @@
!missing-type! MTRWindowCoveringClusterStopMotionParams not bound
!missing-type! MTRWindowCoveringClusterUpOrOpenParams not bound
!missing-type! MTRWriteParams not bound
!missing-enum! MTRMediaPlaybackFeature not bound
!missing-enum! MTRSwitchFeature not bound
!missing-selector! +MTRBaseClusterTestCluster::readAttributeWriteOnlyInt8uWithAttributeCache:endpoint:queue:completionHandler: not bound
!missing-selector! +MTRSetupPayload::generateRandomSetupPasscode not bound
!missing-selector! +MTRSetupPayload::setupPayloadWithOnboardingPayload:error: not bound
!missing-selector! MTRBaseClusterTestCluster::readAttributeWriteOnlyInt8uWithCompletionHandler: not bound
!missing-selector! MTRBaseClusterTestCluster::subscribeAttributeWriteOnlyInt8uWithMinInterval:maxInterval:params:subscriptionEstablished:reportHandler: not bound
!missing-selector! MTRBaseClusterTestCluster::writeAttributeWriteOnlyInt8uWithValue:completionHandler: not bound
!missing-selector! MTRBaseClusterTestCluster::writeAttributeWriteOnlyInt8uWithValue:params:completionHandler: not bound
!missing-selector! MTRBaseDevice::openCommissioningWindowWithSetupPasscode:discriminator:duration:queue:completion: not bound
!missing-selector! MTRClusterTestCluster::readAttributeWriteOnlyInt8uWithParams: not bound
!missing-selector! MTRClusterTestCluster::writeAttributeWriteOnlyInt8uWithValue:expectedValueInterval: not bound
!missing-selector! MTRClusterTestCluster::writeAttributeWriteOnlyInt8uWithValue:expectedValueInterval:params: not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::copyWithZone: not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::init not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::revision not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::setRevision: not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::setType: not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::type not bound
!missing-selector! MTRDevice::openCommissioningWindowWithSetupPasscode:discriminator:duration:queue:completion: not bound
!missing-selector! MTRDeviceController::setupCommissioningSessionWithPayload:newNodeID:error: not bound
!missing-selector! MTRSetupPayload::initWithSetupPasscode:discriminator: not bound
!missing-selector! MTRSetupPayload::qrCodeString: not bound
!missing-type! MTRDescriptorClusterDeviceTypeStruct not bound

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

@ -491,3 +491,6 @@
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexCoordinates = 6 not bound
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexInstanceIndex = 7 not bound
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexInstanceIndexCoordinates = 8 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexBit = 16777216 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexFloat16 = 285212704 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexFloat32 = 285212736 not bound

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -0,0 +1,3 @@
## This was introduced on the 16.2 SDK so using that.
!deprecated-attribute-wrong! BCChatAction has 16.2 not 16.1 on [Deprecated] attribute
!deprecated-attribute-wrong! BCChatButton has 16.2 not 16.1 on [Deprecated] attribute

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -491,3 +491,6 @@
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexCoordinates = 6 not bound
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexInstanceIndex = 7 not bound
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexInstanceIndexCoordinates = 8 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexBit = 16777216 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexFloat16 = 285212704 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexFloat32 = 285212736 not bound

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

@ -188,3 +188,11 @@
!missing-selector! MPSGraph::inverseOfTensor:name: not bound
!missing-selector! MPSGraph::spaceToBatchTensor:spatialAxes:batchAxis:blockDimensions:usePixelShuffleOrder:name: not bound
!missing-selector! MPSGraph::spaceToBatchTensor:spatialAxesTensor:batchAxisTensor:blockDimensionsTensor:usePixelShuffleOrder:name: not bound
!missing-selector! MPSGraph::dequantizeTensor:scale:zeroPoint:dataType:name: not bound
!missing-selector! MPSGraph::dequantizeTensor:scaleTensor:zeroPoint:dataType:axis:name: not bound
!missing-selector! MPSGraph::dequantizeTensor:scaleTensor:zeroPointTensor:dataType:axis:name: not bound
!missing-selector! MPSGraph::quantizeTensor:scale:zeroPoint:dataType:name: not bound
!missing-selector! MPSGraph::quantizeTensor:scaleTensor:zeroPoint:dataType:axis:name: not bound
!missing-selector! MPSGraph::quantizeTensor:scaleTensor:zeroPointTensor:dataType:axis:name: not bound
!missing-selector! MPSGraph::sampleGridWithSourceTensor:coordinateTensor:layout:normalizeCoordinates:relativeCoordinates:alignCorners:paddingMode:nearestRoundingMode:constantValue:name: not bound
!missing-selector! MPSGraph::sampleGridWithSourceTensor:coordinateTensor:layout:normalizeCoordinates:relativeCoordinates:alignCorners:paddingMode:samplingMode:constantValue:name: not bound

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

@ -0,0 +1,6 @@
# The API is marked as unfinished in the header comments so let's not bind it for now
!missing-selector! SRApplicationUsage::supplementalCategories not bound
!missing-selector! SRKeyboardMetrics::longWordTouchUpDown not bound
!missing-selector! SRKeyboardMetrics::touchUpDown not bound
!missing-selector! SRSupplementalCategory::identifier not bound
!missing-type! SRSupplementalCategory not bound

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

@ -554,6 +554,7 @@
!incorrect-protocol-member! UISearchSuggestion::localizedAttributedSuggestion is REQUIRED and should be abstract
!incorrect-protocol-member! UISearchSuggestion::representedObject is REQUIRED and should be abstract
!incorrect-protocol-member! UISearchSuggestion::setRepresentedObject: is REQUIRED and should be abstract
!incorrect-protocol-member! UICalendarViewDelegate::calendarView:decorationForDateComponents: is OPTIONAL and should NOT be abstract
# deprecated in xcode 14 beta 5
!extra-enum-value! Managed value 8 for UIModalPresentationStyle.BlurOverFullScreen is available for the current platform while the value in the native header is not

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

@ -9833,3 +9833,27 @@
!missing-type! MTRWindowCoveringClusterStopMotionParams not bound
!missing-type! MTRWindowCoveringClusterUpOrOpenParams not bound
!missing-type! MTRWriteParams not bound
!missing-enum! MTRMediaPlaybackFeature not bound
!missing-enum! MTRSwitchFeature not bound
!missing-selector! +MTRBaseClusterTestCluster::readAttributeWriteOnlyInt8uWithAttributeCache:endpoint:queue:completionHandler: not bound
!missing-selector! +MTRSetupPayload::generateRandomSetupPasscode not bound
!missing-selector! +MTRSetupPayload::setupPayloadWithOnboardingPayload:error: not bound
!missing-selector! MTRBaseClusterTestCluster::readAttributeWriteOnlyInt8uWithCompletionHandler: not bound
!missing-selector! MTRBaseClusterTestCluster::subscribeAttributeWriteOnlyInt8uWithMinInterval:maxInterval:params:subscriptionEstablished:reportHandler: not bound
!missing-selector! MTRBaseClusterTestCluster::writeAttributeWriteOnlyInt8uWithValue:completionHandler: not bound
!missing-selector! MTRBaseClusterTestCluster::writeAttributeWriteOnlyInt8uWithValue:params:completionHandler: not bound
!missing-selector! MTRBaseDevice::openCommissioningWindowWithSetupPasscode:discriminator:duration:queue:completion: not bound
!missing-selector! MTRClusterTestCluster::readAttributeWriteOnlyInt8uWithParams: not bound
!missing-selector! MTRClusterTestCluster::writeAttributeWriteOnlyInt8uWithValue:expectedValueInterval: not bound
!missing-selector! MTRClusterTestCluster::writeAttributeWriteOnlyInt8uWithValue:expectedValueInterval:params: not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::copyWithZone: not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::init not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::revision not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::setRevision: not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::setType: not bound
!missing-selector! MTRDescriptorClusterDeviceTypeStruct::type not bound
!missing-selector! MTRDevice::openCommissioningWindowWithSetupPasscode:discriminator:duration:queue:completion: not bound
!missing-selector! MTRDeviceController::setupCommissioningSessionWithPayload:newNodeID:error: not bound
!missing-selector! MTRSetupPayload::initWithSetupPasscode:discriminator: not bound
!missing-selector! MTRSetupPayload::qrCodeString: not bound
!missing-type! MTRDescriptorClusterDeviceTypeStruct not bound

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

@ -491,3 +491,6 @@
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexCoordinates = 6 not bound
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexInstanceIndex = 7 not bound
!missing-enum-value! MPSIntersectionDataType native value MPSIntersectionDataTypeDistancePrimitiveIndexBufferIndexInstanceIndexCoordinates = 8 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexBit = 16777216 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexFloat16 = 285212704 not bound
!missing-enum-value! MPSDataType native value MPSDataTypeComplexFloat32 = 285212736 not bound

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу