-
Notifications
You must be signed in to change notification settings - Fork 543
Speech iOS xcode26.0 b3
Rolf Bjarne Kvinge edited this page Jul 9, 2025
·
1 revision
#Speech.framework
diff -ruN /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFSpeechRecognitionResult.h /Applications/Xcode_26.0.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFSpeechRecognitionResult.h
--- /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFSpeechRecognitionResult.h 2025-06-14 10:00:20
+++ /Applications/Xcode_26.0.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFSpeechRecognitionResult.h 2025-06-28 11:11:47
@@ -26,14 +26,14 @@
/**
The transcription with the highest confidence level.
*/
-@property (nonatomic, readonly, copy) SFTranscription *bestTranscription __attribute__((privacy_sensitive));
+@property (nonatomic, readonly, copy) SFTranscription *bestTranscription;
/**
An array of potential transcriptions, sorted in descending order of confidence.
All transcriptions correspond to the same utterance, which can be a partial or final result of the overall request. The first transcription in the array has the highest confidence rating, followed by transcriptions with decreasing confidence ratings.
*/
-@property (nonatomic, readonly, copy) NSArray<SFTranscription *> *transcriptions __attribute__((privacy_sensitive));
+@property (nonatomic, readonly, copy) NSArray<SFTranscription *> *transcriptions;
/**
A Boolean value that indicates whether speech recognition is complete and whether the transcriptions are final.
diff -ruN /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFTranscription.h /Applications/Xcode_26.0.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFTranscription.h
--- /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFTranscription.h 2025-06-14 10:00:20
+++ /Applications/Xcode_26.0.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFTranscription.h 2025-06-28 11:11:47
@@ -28,7 +28,7 @@
/**
The entire transcription of utterances, formatted into a single, user-displayable string.
*/
-@property (nonatomic, readonly, copy) NSString *formattedString __attribute__((privacy_sensitive));
+@property (nonatomic, readonly, copy) NSString *formattedString;
/**
An array of transcription segments that represent the parts of the transcription, as identified by the speech recognizer.
diff -ruN /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFTranscriptionSegment.h /Applications/Xcode_26.0.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFTranscriptionSegment.h
--- /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFTranscriptionSegment.h 2025-06-14 10:00:20
+++ /Applications/Xcode_26.0.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/Speech.framework/Headers/SFTranscriptionSegment.h 2025-06-28 11:11:47
@@ -29,7 +29,7 @@
/**
The string representation of the utterance in the transcription segment.
*/
-@property (nonatomic, readonly, copy) NSString *substring __attribute__((privacy_sensitive));
+@property (nonatomic, readonly, copy) NSString *substring;
/**
The range information for the transcription segment's substring, relative to the overall transcription.
@@ -62,7 +62,7 @@
/**
An array of alternate interpretations of the utterance in the transcription segment.
*/
-@property (nonatomic, readonly) NSArray<NSString *> *alternativeSubstrings __attribute__((privacy_sensitive));
+@property (nonatomic, readonly) NSArray<NSString *> *alternativeSubstrings;
/**
An analysis of the transcription segment's vocal properties.