SCPReaderAccessibility
Objective-C
@interface SCPReaderAccessibility : NSObject
                Swift
class ReaderAccessibility : NSObject
                Class representing the accessibility state of the reader.
- 
                  
                  
Text to speech status of the reader.
Declaration
Objective-C
@property (nonatomic, readonly) SCPReaderTextToSpeechStatus textToSpeechStatus;Swift
var textToSpeechStatus: ReaderTextToSpeechStatus { get } - 
                  
                  
If non-nil represents the error from the reader when attempting to read or set the accessibility settings.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSError *error;Swift
var error: (any Error)? { get } - 
                  
                  
Unavailable
You cannot directly instantiate this class.
Declaration
Objective-C
- (nonnull instancetype)init; - 
                  
                  
Unavailable
You cannot directly instantiate this class.
Declaration
Objective-C
+ (nonnull instancetype)new;