-
Notifications
You must be signed in to change notification settings - Fork 543
AVFAudio iOS xcode26.0 b3
Rolf Bjarne Kvinge edited this page Jul 9, 2025
·
1 revision
#AVFAudio.framework
diff -ruN /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVFAudio.framework/Headers/AVAudioIONode.h /Applications/Xcode_26.0.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVFAudio.framework/Headers/AVAudioIONode.h
--- /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVFAudio.framework/Headers/AVAudioIONode.h 2025-06-11 19:31:27
+++ /Applications/Xcode_26.0.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVFAudio.framework/Headers/AVAudioIONode.h 2025-06-27 07:36:48
@@ -276,12 +276,10 @@
/*! @property intendedSpatialExperience
@abstract
- The AVAudioEngine output node's intended spatial experience.
+ The AVAudioOutputNode's intended `CASpatialAudioExperience`
@discussion
- Only useful for engines that have an output node and are not
- configured in any manual rendering mode. The default value of
- CAAutomaticSpatialAudio means the engine uses its AVAudioSession's intended
- spatial experience. See CASpatialAudioExperience for more details.
+ Not applicable to AVAudioEngine instances configured in manual rendering
+ mode. If unspecified, the property value defaults to `CAAutomaticSpatialAudio`
*/
@property (nonnull, copy) CASpatialAudioExperience *intendedSpatialExperience API_AVAILABLE(visionos(26.0)) API_UNAVAILABLE(ios, watchos, tvos, macos) NS_REFINED_FOR_SWIFT;
diff -ruN /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVFAudio.framework/Headers/AVAudioPlayer.h /Applications/Xcode_26.0.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVFAudio.framework/Headers/AVAudioPlayer.h
--- /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVFAudio.framework/Headers/AVAudioPlayer.h 2025-06-13 15:50:32
+++ /Applications/Xcode_26.0.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVFAudio.framework/Headers/AVAudioPlayer.h 2025-06-27 08:21:29
@@ -116,11 +116,8 @@
/* The array must have the same number of channels as returned by the numberOfChannels property. */
@property(nonatomic, copy, nullable) NSArray<AVAudioSessionChannelDescription *> *channelAssignments API_AVAILABLE(ios(7.0), watchos(2.0), tvos(9.0)) API_UNAVAILABLE(macos) ; /* Array of AVAudioSessionChannelDescription objects */
-/* The AVAudioPlayer's intended spatial experience.
-
- The default value of CAAutomaticSpatialAudio means the player uses its
- AVAudioSession's intended spatial experience. See CASpatialAudioExperience
- for more details */
+/* The AVAudioPlayer's intended CASpatialAudioExperience. */
+/* If unspecified, the property value defaults to CAAutomaticSpatialAudio. */
@property (nonnull, copy) CASpatialAudioExperience *intendedSpatialExperience API_AVAILABLE(visionos(26.0)) API_UNAVAILABLE(ios, watchos, tvos, macos) NS_REFINED_FOR_SWIFT;
@end