0New
54Changed
1Removed
256Unchanged

_AuthenticationServices_SwiftUI

CHANGED

DeliveredVerificationCodesManager.oneTimeCodes(preferredDuration:) loses its default argument, making the preferredDuration parameter now explicitly required at all call sites.

Loading diffs…

_CoreSpotlight_FoundationModels

CHANGED

CustomStage has two breaking API changes: outputTypes (an array) is replaced by outputType (a single SearchPipelineDataType), and execute(statisticName:value:) is renamed to execute(statistic:value:).

Loading diffs…

_PermissionKit_SwiftUI

CHANGED

New PermissionButton initializer accepts a permissionFlow and result callback alongside a custom label, enabling fully custom-styled permission prompts in SwiftUI.

Loading diffs…

_PermissionKit_UIKit

CHANGED

New askSignificantChangePermission method added to AskCenter for requesting significant-change permission with a specified flow and context.

Loading diffs…

_PhotosUI_SwiftUI

CHANGED

The onCompletion callback of photosSharedAlbumCustomizationSheet now receives an optional Error parameter instead of being a plain () -> Void, allowing callers to handle failure cases.

Loading diffs…

_SwiftData_SwiftUI

CHANGED

The sectionBy: parameter on all @Query sectioned initializers is now required (non-optional, no default) and the result type changed from ResultsSectionCollection to SectionedResults, breaking existing call sites that relied on the optional/defaulted form.

Loading diffs…

_USDKit_RealityKit

CHANGED

waitForRenderComplete and localizedDescription were renamed to waitForRenderCompletion and errorDescription respectively, with no other changes.

Loading diffs…

Accessibility

CHANGED

New AXSpeechAttributeSSML attributed-string key (and matching Swift accessibilitySpeechSSML attribute scope) lets developers annotate text with SSML markup to control speech synthesis output.

Loading diffs…

AppIntents

CHANGED

Three AppSchema.RemindersIntent update intents (updateGroup, updateList, updateSection) were removed, and DisplayRepresentation.Components was removed entirely.

  • A new AppSchema.NotesIntent.appendText intent has been added.
  • IntentFile.defaultResolverSpecification now returns an opaque some ResolverSpecification instead of the concrete EmptyResolverSpecification.
Loading diffs…

AppManagedFeatures

CHANGED

The entire AppManagedFeaturesError enum (and all its cases) has been removed from the public API.

Loading diffs…

AuthenticationServices

CHANGED

ASDeliveredVerificationCodesManager.oneTimeCodes(preferredDuration:anchor:) loses its default argument for preferredDuration, requiring call sites that relied on the default to now pass an explicit value.

Loading diffs…

AutomaticAssessmentConfiguration

CHANGED

macOS/Catalyst gains support for allowlisting arbitrary binary executables in assessment sessions, via the new AEAssessmentBinaryExecutable and AEAssessmentBinaryExecutableConfiguration types.

  • AEAssessmentApplication.teamIdentifier and its corresponding initializer are now available on iOS 27, removing the previous iOS exclusion.
  • AEAssessmentConfiguration adds allowsForceQuit and allowVirtualMachine policy properties (macOS/Catalyst only).
Loading diffs…

AVFoundation

CHANGED

The AVQueuedSampleBufferRendering protocol and the concrete AVSampleBufferAudioRenderer/AVSampleBufferVideoRenderer classes deprecate their callback-based media-data enqueueing APIs in Swift, directing developers to use the new sampleBufferReceiver/Receiver async pattern instead.

  • AVCaptureSystemPressureFactorSystemStress was renamed to AVCaptureSystemPressureFactorBatteryStress, reflecting a more precise description of that pressure factor.
  • AVAssetExportSessionResumptionFailureReasonIncompatiblePreset was removed and replaced by AVAssetExportSessionResumptionFailureReasonUnsupportedForPresetOnPlatform.
Loading diffs…

BackgroundTasks

CHANGED

Minor update — the deprecation message on the synchronous submitTaskRequest:error: method was revised to mention the Swift async/await overload alongside the completion-handler alternative.

Loading diffs…

ClassKitUI

CHANGED

No functional API changes — the only diff is an added ObjectiveC framework import.

Loading diffs…

ComputeGraph

CHANGED

Minor address-space precision fix — lines and line_strip in the debug-draw API now explicitly annotate their float3 array parameters with the thread address space, with no functional behavior change.

Loading diffs…

ContactsUI

CHANGED

CNContactSavedAutoFillDetailsController has been removed and the framework now imports AppIntents modules, suggesting autofill contact functionality is migrating to an App Intents-based model.

Loading diffs…

CoreAudio

CHANGED

AudioServerPlugInRegisterMediaDeviceExtension is now explicitly unavailable on visionOS (previously unspecified).

Loading diffs…

CoreData

CHANGED

NSPersistentCloudKitContainerEvent gains NS_SWIFT_SENDABLE, making it usable across actor boundaries without a compiler warning.

Loading diffs…

CoreGraphics

CHANGED

New CGPDFStructureElement and CGPDFMarkedContentItem types (iOS 27+) provide a structured API for authoring tagged PDF documents with a proper structure tree, replacing the older begin/end tag approach.

  • CGContext gains new marked-content methods (beginMarkedContentSequence, endMarkedContentSequence, beginObjectReference, addStructureTreeRootChild) for associating drawn content with structure elements.
  • A new CGPDFTagType.artifact tag type is added for marking non-structural content in tagged PDFs.
Loading diffs…

CoreImage

CHANGED

CIRAWFilter gains a downloadResources(timeout:completionHandler:) method for fetching decoder resources on demand, and CIImageProcessor gets cleaner Swift names for its tiled/surface/pixel-buffer APIs.

  • Metal kernel sampler and destination types in CIKernelMetalLib.h now mark all member functions with the thread address-space qualifier, which may require recompilation of custom Metal kernels.
  • temporaryPixelBuffer(identifier:format:width:height:attributes:) is now marked CF_RETURNS_NOT_RETAINED, clarifying its memory ownership contract.
Loading diffs…

CoreMedia

CHANGED

Two new metadata format description keys (kCMMetadataFormatDescriptionKey_HumanReadableString and kCMMetadataFormatDescriptionMetadataSpecificationKey_HumanReadableString) allow attaching human-readable strings to metadata format descriptions and specifications.

Loading diffs…

CoreTelephony

CHANGED

The webBrowser app category was removed from CTSlicingManager.AppCategory, and a new CTCellularPlanStatusAuthorizationNotSupported case was added to CTCellularPlanStatus on iOS 27.

Loading diffs…

CryptoKit

CHANGED

New Insecure.UnauthenticatedAES and Insecure.UnauthenticatedChaCha20 types expose raw, unauthenticated block permutation and stream cipher operations for use cases where authentication is handled separately.

Loading diffs…

DeclaredAgeRange

CHANGED

Three new error cases added to AgeRangeService.Error covering declined onboarding, invalid account, and network failures.

Loading diffs…

Foundation

CHANGED

Minor conformance removals — BorrowingSequence has been dropped from Span, MutableSpan, RawSpan, MutableRawSpan, and InlineArray, likely reflecting a protocol design change in the Swift standard library.

Loading diffs…

FoundationModels

CHANGED

Metadata dictionaries throughout the framework changed type from [String: any Sendable & Codable & Equatable] to [String: GeneratedContent] (or ConvertibleToGeneratedContent at call sites), which is a breaking change affecting every respond/streamResponse call and transcript type that passes metadata.

  • The Transcript.CustomSegment protocol and related Transcript.Segment.custom case were removed, eliminating custom segment extensibility.
  • Transcript.history and SessionPropertyValues.history now return the new Transcript.HistoryView type instead of ArraySlice<Transcript.Entry>.
  • SystemLanguageModel.Variant is a new struct (with core3 and coreAdvanced3 values) exposing named model variants via a new SystemLanguageModel.variant property.
Loading diffs…

ImageIO

CHANGED

New kCGImageSourcePrioritizeQuality option lets you request higher-quality decoding when creating images from a source.

Loading diffs…

Intents

CHANGED

The entire Intents notebook/tasks API surface (all note- and reminder-related intents, types, and resolution results — INAddTasksIntent, INCreateNoteIntent, INSearchForNotebookItemsIntent, INSetTaskAttributeIntent, INSnoozeTasksIntent, and all associated types) is deprecated as of iOS 27/watchOS 27, with the migration message directing developers to adopt the Notes or Reminders AppSchema domain instead.

Loading diffs…

Matter

CHANGED

Two new provisional clusters (MTRBaseClusterMediaFileManagement and MTRBaseClusterAudioControl) are added alongside significant expansions to several existing media clusters.

  • ContentLauncher gains contentReplicationRequest, playPreset, new queue/preset attributes and status codes, and a ContentReplication event; MediaPlayback gains AvailableCommands and ContentInfo attributes.
  • ClosureControl and ClosureDimension each gain new grouped commands (groupedMoveTo, groupedSetTarget, groupedStep) and a new Access feature flag.
  • AppleAccessoryErrors receives a comprehensive set of provisional error-category, severity, and error-code enumerations.
Loading diffs…

MediaDevice

CHANGED

reportRealtimeSampleDeliveryKPIs(session:metKPIs:) has been replaced by reportQualityMetricsPassed(_:forSession:) on MediaDeviceRoutingManager, with reordered parameters and a renamed method.

Loading diffs…

MediaIntelligence

CHANGED

New framework with no public API additions beyond a UniformTypeIdentifiers import dependency — no developer-facing symbols are exposed yet.

Loading diffs…

Messages

CHANGED

Minor fix — a semicolon typo in the MSUPIRequest availability declaration was corrected, with no functional API changes.

Loading diffs…

MetricKit

CHANGED

ScrollHitchTimeMetric is removed and hitch-time measurements are now typed with the new HitchTimeRatio unit class instead of the generic Foundation.Unit.

  • HitchTimeMetric.ratio and SignpostIntervalMetric.hitchTimeRatio change from Measurement<Unit> to Measurement<HitchTimeRatio>, requiring updates to any code that handled the untyped form.
  • LocationActivityMetric gains a reducedAccuracy property for tracking time spent in reduced-accuracy location mode.
Loading diffs…

NearbyInteraction

CHANGED

Conditional memory-management attribute added to NISession.delegateQueue to correctly handle dispatch_queue_t ownership under non-Objective-C object runtimes.

Loading diffs…

NetworkExtension

CHANGED

Several NEPacketTunnelNetworkSettings properties that were newly introduced in this SDK cycle (includeAllNetworks, excludeLocalNetworks, excludeCellularServices, excludeAPNs, excludeDeviceCommunication, enforceRoutes) and the associated IPFamily enum have been marked API_UNAVAILABLE on all platforms, effectively pulling them from the public API before release.

Loading diffs…

PaperKit

CHANGED

PKStrokeRenderStateReference type alias has been removed with no replacement added.

Loading diffs…

PassKit

CHANGED

Three new payment network constants added (PKPaymentNetworkPayPak, PKPaymentNetworkMaal, PKPaymentNetworkElcard), with no other changes.

Loading diffs…

PDFKit

CHANGED

Several internal platform-abstraction macros (PDFKitPlatformTouch, PDFKitPlatformGestureRecognizer and its variants, PDFKitPlatformTableView, PDFKitPlatformComboBox, PDFKitPlatformUserInterfaceLayoutDirection and its variants) have been removed from the public header, narrowing the set of cross-platform type aliases PDFKit exposes.

Loading diffs…

PencilKit

CHANGED

The internal Objective-C bridge type for stroke render state has been renamed/restructured: __PKStrokeRenderState is replaced by the now-public PKStrokeRenderStateReference class (previously NS_REFINED_FOR_SWIFT-hidden), and the asObjCRenderState() helper method is removed accordingly.

Loading diffs…

PermissionKit

CHANGED

New framework introducing PermissionFlow and PermissionResult types that model parental-approval permission flows, including in-person approval and ask-to-approve delegation patterns.

Loading diffs…

Photos

CHANGED

The background-upload job extension API gains a new PHAssetResourceUploadJobOptions type (with a preventsExpensiveNetworkAccess flag) and replaces the deprecated setUploadJobExtensionEnabled:error: with separate enableUploadJobExtensionWithOptions:error: and disableUploadJobExtensionWithError: methods.

  • PHAssetResource.originalFilename is deprecated in favor of a new nullable filename property.
  • PHAsset.addedDate is corrected to nullable, and PHAssetExtendedMetadata.originalFileName is renamed to originalFilename.
Loading diffs…

PhotosUI

CHANGED

PHSharedAlbumCreationResult gains an error property and makes albumIdentifier/albumURL optional to represent failure cases, and PHPickerSearchText adds an initializer from UIPhotoSearchSuggestion (iOS only).

Loading diffs…

QuickLook

CHANGED

QuickLook now imports UniformTypeIdentifiers instead of CoreTransferable.

Loading diffs…

RealityFoundation

CHANGED

PortalComponent.BoundaryMode.disabled is renamed to .none, and two Entity component-access subscripts are removed.

Loading diffs…

ReplayKit

CHANGED

ReplayKit is deprecated in favor of ScreenCaptureKit, with RPScreenRecorder, RPRecordingErrorDomain, and RPRecordingErrorCode all marked API_DEPRECATED targeting removal at iOS/tvOS 27.0 and macOS 27.0.

Loading diffs…

SwiftData

CHANGED

ResultsSectionCollection has been replaced by a new SectionedResults type, and the SectionName generic parameter on ResultsObserver and ResultsSection has been renamed to SectionTitle, with ResultsSection.name replaced by .title — all source-breaking changes for code using sectioned fetch results.

  • HistoryToken and DefaultHistoryToken gain a storeIdentifier property, making it possible to identify which store a history token belongs to.
Loading diffs…

SwiftUI

CHANGED

A large set of previously available types and APIs — including HoverEffect, AccessibilityTechnologies, AccessibilityActionKind, SymbolEffectTransition, FillShapeStyle, several View modifiers (hoverEffect, containerRelativeFrame, coordinateSpace, symbolEffect, speech modifiers), and the Transition/CustomHoverEffect protocols — have been removed from the public SDK surface in this diff.

  • New drag/drop configuration APIs (dragConfiguration, dropConfiguration, onDropSessionUpdated) have been added to View.
  • A new PresentationPlacement type with automatic, center, leading, and trailing options is introduced, along with a presentationPlacement(_:) view modifier.
Loading diffs…

SwiftUICore

CHANGED

A broad expansion of SwiftUICore's public API, migrating many types previously available only in SwiftUI (hover effects, accessibility primitives, symbol effects, speech modifiers) into the core module.

  • Hover-effect infrastructure is now in SwiftUICore, including HoverEffect, AutomaticHoverEffect, HighlightHoverEffect, LiftHoverEffect, and the CustomHoverEffect protocol with a hoverEffectDisabled modifier.
  • Accessibility types (AccessibilityActionKind, AccessibilityActionCategory, AccessibilityDirectTouchOptions, AccessibilityTechnologies, AccessibilityZoomGestureAction) and related environment values (accessibilityVoiceOverEnabled, accessibilitySwitchControlEnabled, accessibilityAssistiveAccessEnabled, accessibilityLargeContentViewerEnabled) are now publicly available in SwiftUICore.
  • Symbol-effect support (SymbolEffectTransition, WiggleSymbolEffect.custom(angle:), symbolEffect transition/content-transition variants) and speech-modifier APIs (speechAdjustedPitch, speechSpellsOutCharacters, etc.) are also added.
Loading diffs…

UIKit

CHANGED

UISheetPresentationController gains a preferredPlacement property (iOS/tvOS/visionOS 27.0) that lets you position a sheet at the leading edge, center, or trailing edge of the screen instead of always anchoring to the bottom.

Loading diffs…

USDKit

CHANGED

The metadata value constraint has been promoted from USDPrim.Attribute.MetadataValue to the new USDStage.Object.MetadataValue protocol, and the custom Array/Dictionary types have been removed in favour of standard Swift collections, both of which are breaking changes for existing call sites.

  • USDValue's typed-access API has been replaced: get()/uncheckedGet() are removed and superseded by value(as:) and unsafeValue(assumingType:), and arraySize/isArrayValued are renamed to arrayCount/isArray.
  • USDPrim.relationship(named:) now returns a non-optional USDPrim.Relationship, and new prim APIs are added for prototype inspection (isPrototype, prototype) and API schema removal (removeAPISchema).
  • USDStage.EditTarget and USDStage.OpenOptions no longer have public no-argument initializers, and USDPrim.Spec boolean properties are renamed with is prefixes (isActive, isInstanceable).
Loading diffs…

VideoToolbox

CHANGED

Minor additions to the low-latency frame processor APIs, adding methods to query maximum output dimensions and pixel counts for a given spatial scale factor on both VTLowLatencyFrameInterpolationConfiguration and VTLowLatencySuperResolutionScalerConfiguration, plus a new supportedScaleFactors class property on the super-resolution scaler.

Loading diffs…

Vision

CHANGED

RecognizeAnimalsRequest gains a typed Identifier enum (with cat, catHead, dog, dogHead cases) and a new revision3, replacing untyped string identifiers for animal recognition targets.

  • GenerateIterativeSegmentationRequest adds supportedComputeStageDevices for querying which compute devices are available per pipeline stage.
Loading diffs…

WebKit

CHANGED

Several previously iOS-only or NA-availability APIs are now promoted to full availability on macOS 27, iOS 27, and visionOS 27, and WKJSSerializedNode is replaced by WKDOMNodeSnapshot with renamed WKContentWorldConfiguration properties (e.g., nodeSnapshotCreationEnabled instead of nodeSerializationEnabled).

  • WKContentWorldConfiguration received a Swift name (WKContentWorld.Configuration), property renames (openClosedShadowRootsEnabledallowAccessingClosedShadowRoots, nodeSerializationEnablednodeSnapshotCreationEnabled), and proper boolean getters, while WKJSHandle had its properties renamed (framesourceFrame, worldcontentWorld).
  • WKUserContentController gains addBuffer(_:name:to:) and removeBuffer(named:from:) for passing binary data buffers into content worlds.
  • WKWebpagePreferences.globalPrivacyControlStatus (a BOOL named as a status) is replaced by globalPrivacyControlEnabled with a clearer name.
Loading diffs…

EnhancedLinkSecurity

REMOVED

The entire EnhancedLinkSecurity framework has been removed, including IMEnhancedLinkSecurityManager (EnhancedLinkSecurityManager in Swift) and all its URL-security-gating APIs.

Loading diffs…

_AdAttributionKit_StoreKit

UNCHANGED

No differences detected.

_AppIntents_HealthKit

UNCHANGED

No differences detected.

_AppIntents_SwiftUI

UNCHANGED
Loading diffs…

_AppIntents_UIKit

UNCHANGED

No differences detected.

_AVKit_SwiftUI

UNCHANGED

No differences detected.

_Contacts_AppIntents

UNCHANGED

No differences detected.

_CoreData_CloudKit

UNCHANGED

No differences detected.

_CoreLocation_SwiftUI

UNCHANGED

No differences detected.

_CoreLocationUI_SwiftUI

UNCHANGED

No differences detected.

_CoreMotion_SwiftUI

UNCHANGED

No differences detected.

_CoreNFC_UIKit

UNCHANGED

No differences detected.

_DataDetection_SwiftUI

UNCHANGED

No differences detected.

_DeviceActivity_SwiftUI

UNCHANGED

No differences detected.

_DeviceDiscoveryUI_SwiftUI

UNCHANGED

No differences detected.

_FinanceKit_AppIntents

UNCHANGED

No differences detected.

_FoundationModels_SwiftUI

UNCHANGED

No differences detected.

_FoundationModels_UIKit

UNCHANGED

No differences detected.

_GameController_SwiftUI

UNCHANGED

No differences detected.

_GeoToolbox_AppIntents

UNCHANGED

No differences detected.

_GroupActivities_UIKit

UNCHANGED

No differences detected.

_HomeKit_SwiftUI

UNCHANGED

No differences detected.

_Intents_TipKit

UNCHANGED

No differences detected.

_LinkPresentation_AppIntents

UNCHANGED

No differences detected.

_LocationEssentials

UNCHANGED

No differences detected.

_ManagedAppDistribution_SwiftUI

UNCHANGED

No differences detected.

_MapKit_SwiftUI

UNCHANGED

No differences detected.

_MarketplaceKit_UIKit

UNCHANGED

No differences detected.

_MediaIntents_AppIntents

UNCHANGED

No differences detected.

_MediaPlayer_AppIntents

UNCHANGED

No differences detected.

_MusicKit_SwiftUI

UNCHANGED

No differences detected.

_NowPlaying_AppIntents

UNCHANGED

No differences detected.

_PassKit_SwiftUI

UNCHANGED

No differences detected.

_Photos_AppIntents

UNCHANGED

No differences detected.

_PhotosUI_WidgetKit

UNCHANGED

No differences detected.

_QuickLook_SwiftUI

UNCHANGED

No differences detected.

_RealityKit_ComputeGraph

UNCHANGED

No differences detected.

_RealityKit_SwiftUI

UNCHANGED

No differences detected.

_RelevanceKit_MapKit

UNCHANGED

No differences detected.

_SceneKit_SwiftUI

UNCHANGED

No differences detected.

_ScreenCaptureKit_SwiftUI

UNCHANGED

No differences detected.

_SecureElementCredential_SwiftUI

UNCHANGED

No differences detected.

_SecureElementCredential_UIKit

UNCHANGED

No differences detected.

_SharedWithYou_AppIntents

UNCHANGED

No differences detected.

_SpriteKit_SwiftUI

UNCHANGED

No differences detected.

_StoreKit_SwiftUI

UNCHANGED

No differences detected.

_SwiftData_CoreData

UNCHANGED

No differences detected.

_Translation_SwiftUI

UNCHANGED

No differences detected.

_UserNotifications_AppIntents

UNCHANGED

No differences detected.

_Vision_FoundationModels

UNCHANGED

No differences detected.

_WebKit_SwiftUI

UNCHANGED
Loading diffs…

_WorkoutKit_SwiftUI

UNCHANGED

No differences detected.

Accelerate

UNCHANGED

No differences detected.

AccessoryLiveActivities

UNCHANGED

No differences detected.

AccessoryNotifications

UNCHANGED

No differences detected.

AccessorySetupKit

UNCHANGED

No differences detected.

AccessoryTransportExtension

UNCHANGED
Loading diffs…

Accounts

UNCHANGED

No differences detected.

ActivityKit

UNCHANGED

No differences detected.

AdAttributionKit

UNCHANGED

No differences detected.

AddressBook

UNCHANGED

No differences detected.

AddressBookUI

UNCHANGED

No differences detected.

AdServices

UNCHANGED

No differences detected.

AdSupport

UNCHANGED

No differences detected.

AlarmKit

UNCHANGED

No differences detected.

AppClip

UNCHANGED

No differences detected.

AppIntentsTypeSupport

UNCHANGED

No differences detected.

AppMigrationKit

UNCHANGED

No differences detected.

AppTrackingTransparency

UNCHANGED

No differences detected.

ARKit

UNCHANGED

No differences detected.

AssetsLibrary

UNCHANGED

No differences detected.

Assignables

UNCHANGED

No differences detected.

AudioAccessoryKit

UNCHANGED

No differences detected.

AudioToolbox

UNCHANGED

No differences detected.

AudioUnit

UNCHANGED

No differences detected.

AutomatedDeviceEnrollment

UNCHANGED

No differences detected.

AVFAudio

UNCHANGED
Loading diffs…

AVKit

UNCHANGED

No differences detected.

AVRouting

UNCHANGED

No differences detected.

AVSystemRouting

UNCHANGED
Loading diffs…

BackgroundAssets

UNCHANGED
Loading diffs…

BrowserEngineCore

UNCHANGED

No differences detected.

BrowserEngineKit

UNCHANGED

No differences detected.

BrowserKit

UNCHANGED

No differences detected.

BusinessChat

UNCHANGED

No differences detected.

CallKit

UNCHANGED

No differences detected.

CarKey

UNCHANGED

No differences detected.

CarPlay

UNCHANGED

No differences detected.

CFNetwork

UNCHANGED

No differences detected.

Charts

UNCHANGED

No differences detected.

Cinematic

UNCHANGED

No differences detected.

ClassKit

UNCHANGED

No differences detected.

ClockKit

UNCHANGED

No differences detected.

CloudKit

UNCHANGED

No differences detected.

ColorSync

UNCHANGED

No differences detected.

Combine

UNCHANGED

No differences detected.

ContactProvider

UNCHANGED

No differences detected.

Contacts

UNCHANGED

No differences detected.

CoreAI

UNCHANGED

No differences detected.

CoreAudioKit

UNCHANGED

No differences detected.

CoreAudioTypes

UNCHANGED

No differences detected.

CoreBluetooth

UNCHANGED

No differences detected.

CoreFoundation

UNCHANGED

No differences detected.

CoreHaptics

UNCHANGED

No differences detected.

CoreLocation

UNCHANGED

No differences detected.

CoreLocationUI

UNCHANGED

No differences detected.

CoreMediaIO

UNCHANGED

No differences detected.

CoreMIDI

UNCHANGED

No differences detected.

CoreML

UNCHANGED

No differences detected.

CoreMotion

UNCHANGED

No differences detected.

CoreNFC

UNCHANGED

No differences detected.

CoreServices

UNCHANGED

No differences detected.

CoreSpotlight

UNCHANGED

No differences detected.

CoreText

UNCHANGED

No differences detected.

CoreTransferable

UNCHANGED

No differences detected.

CoreVideo

UNCHANGED

No differences detected.

CrashReportExtension

UNCHANGED

No differences detected.

CreateML

UNCHANGED

No differences detected.

CreateMLComponents

UNCHANGED

No differences detected.

CryptoTokenKit

UNCHANGED

No differences detected.

DataDetection

UNCHANGED

No differences detected.

DeveloperToolsSupport

UNCHANGED

No differences detected.

DeviceActivity

UNCHANGED

No differences detected.

DeviceCheck

UNCHANGED

No differences detected.

DeviceDiscoveryExtension

UNCHANGED

No differences detected.

DeviceDiscoveryUI

UNCHANGED

No differences detected.

DockKit

UNCHANGED

No differences detected.

EnergyKit

UNCHANGED

No differences detected.

EventKit

UNCHANGED

No differences detected.

EventKitUI

UNCHANGED

No differences detected.

ExposureNotification

UNCHANGED

No differences detected.

ExtensionFoundation

UNCHANGED

No differences detected.

ExtensionKit

UNCHANGED

No differences detected.

ExternalAccessory

UNCHANGED

No differences detected.

FamilyControls

UNCHANGED

No differences detected.

FileProvider

UNCHANGED

No differences detected.

FileProviderUI

UNCHANGED

No differences detected.

FinanceKit

UNCHANGED

No differences detected.

FinanceKitUI

UNCHANGED

No differences detected.

GameController

UNCHANGED

No differences detected.

GameKit

UNCHANGED

No differences detected.

GameplayKit

UNCHANGED

No differences detected.

GameSave

UNCHANGED

No differences detected.

GeoToolbox

UNCHANGED

No differences detected.

GLKit

UNCHANGED

No differences detected.

GroupActivities

UNCHANGED

No differences detected.

GSS

UNCHANGED

No differences detected.

HealthKit

UNCHANGED

No differences detected.

HealthKitUI

UNCHANGED

No differences detected.

HomeKit

UNCHANGED

No differences detected.

iAd

UNCHANGED

No differences detected.

IdentityDocumentServices

UNCHANGED

No differences detected.

IdentityDocumentServicesUI

UNCHANGED

No differences detected.

IdentityLookup

UNCHANGED

No differences detected.

IdentityLookupUI

UNCHANGED

No differences detected.

ImageCaptureCore

UNCHANGED

No differences detected.

ImagePlayground

UNCHANGED

No differences detected.

ImmersiveMediaSupport

UNCHANGED

No differences detected.

IntentsUI

UNCHANGED

No differences detected.

IOSurface

UNCHANGED

No differences detected.

JavaScriptCore

UNCHANGED

No differences detected.

JournalingSuggestions

UNCHANGED

No differences detected.

LightweightCodeRequirements

UNCHANGED

No differences detected.

LinkPresentation

UNCHANGED

No differences detected.

LinkSecurity

UNCHANGED

No differences detected.

LiveCommunicationKit

UNCHANGED

No differences detected.

LocalAuthentication

UNCHANGED

No differences detected.

LocalAuthenticationEmbeddedUI

UNCHANGED

No differences detected.

LockedCameraCapture

UNCHANGED

No differences detected.

ManagedApp

UNCHANGED

No differences detected.

ManagedAppDistribution

UNCHANGED

No differences detected.

ManagedSettings

UNCHANGED

No differences detected.

ManagedSettingsUI

UNCHANGED

No differences detected.

MapKit

UNCHANGED

No differences detected.

MarketplaceKit

UNCHANGED

No differences detected.

MatterSupport

UNCHANGED

No differences detected.

MediaAccessibility

UNCHANGED

No differences detected.

MediaIntents

UNCHANGED

No differences detected.

MediaPlayer

UNCHANGED

No differences detected.

MediaSetup

UNCHANGED

No differences detected.

MediaToolbox

UNCHANGED

No differences detected.

MessageUI

UNCHANGED

No differences detected.

Metal

UNCHANGED

No differences detected.

MetalFX

UNCHANGED

No differences detected.

MetalKit

UNCHANGED

No differences detected.

MetalPerformancePrimitives

UNCHANGED

No differences detected.

MetalPerformanceShaders

UNCHANGED

No differences detected.

MetalPerformanceShadersGraph

UNCHANGED

No differences detected.

MLCompute

UNCHANGED

No differences detected.

MobileCoreServices

UNCHANGED

No differences detected.

ModelIO

UNCHANGED

No differences detected.

MultipeerConnectivity

UNCHANGED

No differences detected.

MusicKit

UNCHANGED

No differences detected.

MusicUnderstanding

UNCHANGED

No differences detected.

NaturalLanguage

UNCHANGED

No differences detected.

Network

UNCHANGED

No differences detected.

NotificationCenter

UNCHANGED

No differences detected.

NowPlaying

UNCHANGED

No differences detected.

OpenAL

UNCHANGED

No differences detected.

OpenGLES

UNCHANGED

No differences detected.

OSLog

UNCHANGED

No differences detected.

PHASE

UNCHANGED

No differences detected.

ProximityReader

UNCHANGED

No differences detected.

PushKit

UNCHANGED

No differences detected.

PushToTalk

UNCHANGED

No differences detected.

QuartzCore

UNCHANGED

No differences detected.

QuickLookThumbnailing

UNCHANGED

No differences detected.

RealityKit

UNCHANGED

No differences detected.

RelevanceKit

UNCHANGED

No differences detected.

RoomPlan

UNCHANGED

No differences detected.

SafariServices

UNCHANGED

No differences detected.

SafetyKit

UNCHANGED

No differences detected.

SceneKit

UNCHANGED

No differences detected.

ScreenCaptureKit

UNCHANGED

No differences detected.

ScreenTime

UNCHANGED

No differences detected.

SecureElementCredential

UNCHANGED

No differences detected.

Security

UNCHANGED

No differences detected.

SecurityUI

UNCHANGED

No differences detected.

SensitiveContentAnalysis

UNCHANGED

No differences detected.

SensorKit

UNCHANGED

No differences detected.

ServicesAccountLinking

UNCHANGED

No differences detected.

SharedWithYou

UNCHANGED

No differences detected.

SharedWithYouCore

UNCHANGED

No differences detected.

ShazamKit

UNCHANGED

No differences detected.

Social

UNCHANGED

No differences detected.

SoundAnalysis

UNCHANGED

No differences detected.

Speech

UNCHANGED

No differences detected.

SpriteKit

UNCHANGED

No differences detected.

StateReporting

UNCHANGED

No differences detected.

StickerFoundation

UNCHANGED

No differences detected.

StickerKit

UNCHANGED

No differences detected.

StoreKit

UNCHANGED
Loading diffs…

SuggestedActions

UNCHANGED

No differences detected.

Symbols

UNCHANGED

No differences detected.

SystemConfiguration

UNCHANGED

No differences detected.

SystemExtensions

UNCHANGED

No differences detected.

TabularData

UNCHANGED

No differences detected.

TelephonyMessagingKit

UNCHANGED

No differences detected.

ThreadNetwork

UNCHANGED
Loading diffs…

TipKit

UNCHANGED

No differences detected.

TouchController

UNCHANGED

No differences detected.

Translation

UNCHANGED

No differences detected.

TranslationUIProvider

UNCHANGED

No differences detected.

TrustInsights

UNCHANGED
Loading diffs…

UniformTypeIdentifiers

UNCHANGED

No differences detected.

UserNotifications

UNCHANGED

No differences detected.

UserNotificationsUI

UNCHANGED

No differences detected.

VideoSubscriberAccount

UNCHANGED

No differences detected.

VisionKit

UNCHANGED

No differences detected.

VisualIntelligence

UNCHANGED

No differences detected.

WatchConnectivity

UNCHANGED

No differences detected.

WeatherKit

UNCHANGED

No differences detected.

WidgetKit

UNCHANGED

No differences detected.

WiFiAware

UNCHANGED

No differences detected.

WiFiInfrastructure

UNCHANGED

No differences detected.

WirelessInsights

UNCHANGED

No differences detected.

WorkoutKit

UNCHANGED

No differences detected.

No frameworks match the current filter.