Skip to content

AVKit iOS xcode15.1 b3

Alex Soto edited this page Nov 14, 2023 · 1 revision

#AVKit.framework

diff -ruN /Applications/Xcode_15.1.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVCaptureEvent.h /Applications/Xcode_15.1.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVCaptureEvent.h
--- /Applications/Xcode_15.1.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVCaptureEvent.h	2023-10-15 23:16:45
+++ /Applications/Xcode_15.1.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVCaptureEvent.h	2023-11-07 17:28:49
@@ -30,7 +30,7 @@
 	@constant	AVCaptureEventPhaseEnded
 				A phase sent at the end of a capture event.
 	@constant	AVCaptureEventPhaseCancelled
-				A phase sent when a capture event is cancelled.s
+				A phase sent when a capture event is cancelled.
  */
 typedef NS_ENUM(NSUInteger, AVCaptureEventPhase) {
 	AVCaptureEventPhaseBegan,
@@ -43,7 +43,7 @@
 
 /*!
 	@interface	AVCaptureEvent
-	@abstract	An object describing a system hardware capture event.
+	@abstract	An object describing a system capture event.
  */
 API_AVAILABLE(ios(17.2)) API_UNAVAILABLE(visionos) API_UNAVAILABLE(macos, tvos, watchos)
 @interface AVCaptureEvent : NSObject
diff -ruN /Applications/Xcode_15.1.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVCaptureEventInteraction.h /Applications/Xcode_15.1.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVCaptureEventInteraction.h
--- /Applications/Xcode_15.1.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVCaptureEventInteraction.h	2023-10-15 23:16:45
+++ /Applications/Xcode_15.1.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVCaptureEventInteraction.h	2023-11-07 17:28:49
@@ -23,7 +23,7 @@
 
 /*!
 	@interface	AVCaptureEventInteraction
-	@abstract	A UIInteraction used to register actions triggered when the hardware capture buttons are pressed.
+	@abstract	A UIInteraction used to register actions triggered by system capture events.
 	@discussion	Events may or may not be sent to applications based on the current system state. Backgrounded applications will not receive events, additionally events will only be sent to applications that are actively using the camera. AVCaptureEventInteraction should be attached to views in the responder chain.
  
 				This API is for media capture use cases only.
@@ -37,7 +37,7 @@
 /*!
 	@method		initWithEventHandler:
 	@param		handler
-				An event handler called when either the primary to secondary buttons are pressed.
+				An event handler called when either the primary or secondary events are triggered.
 	@returns	An AVCaptureEventInteraction.
 	@abstract	Initializer for an AVCaptureEventInteraction.
  */
@@ -46,9 +46,9 @@
 /*!
 	@method		initWithPrimaryEventHandler:secondaryEventHandler:
 	@param		primaryHandler
-				An event handler called when the primary capture button is pressed.
+				An event handler called when a primary capture event is triggered.
 	@param		secondaryHandler
- 				An event handler called when the secondary capture button is pressed.
+ 				An event handler called when a secondary capture event is triggered.
 	@returns	An AVCaptureEventInteraction.
 	@abstract	Initializer for an AVCaptureEventInteraction.
  */
@@ -59,7 +59,7 @@
 	@property	enabled
 	@abstract	A boolean value indicating whether this capture event interaction is active or not.
  
-				Set this value to NO, when your application cannot or will not respond to the action callbacks to avoid non-interactive hardware buttons.
+				Set this value to NO when your application cannot or will not respond to the action callbacks to avoid non-interactive buttons or UI elements.
  */
 @property (nonatomic, readwrite, getter=isEnabled) BOOL enabled;
 
Clone this wiki locally