SBSDKUICroppingScreenAccessibilityConfiguration

@interface SBSDKUICroppingScreenAccessibilityConfiguration : NSObject

Configuration for the accessibility labels and hints.

  • Text, that is used as an accessibility label for the cancel button. The default value is “Cancel”.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *cancelButtonAccessibilityLabel;

    Swift

    var cancelButtonAccessibilityLabel: String? { get set }
  • Text, that is used as an accessibility hint for the cancel button. The default value is “Discards changes and dismisses the screen”.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *cancelButtonAccessibilityHint;

    Swift

    var cancelButtonAccessibilityHint: String? { get set }
  • Text, that is used as an accessibility label for the done button. The default value is “Done”.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *doneButtonAccessibilityLabel;

    Swift

    var doneButtonAccessibilityLabel: String? { get set }
  • Text, that is used as an accessibility hint for the done button. The default value is “Saves and dismisses the screen”.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *doneButtonAccessibilityHint;

    Swift

    var doneButtonAccessibilityHint: String? { get set }
  • Text, that is used as an accessibility label for the detect button. The default value is “Detect”.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *detectButtonAccessibilityLabel;

    Swift

    var detectButtonAccessibilityLabel: String? { get set }
  • Text, that is used as an accessibility hint for the detect button. The default value is “Detects document’s edges”.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *detectButtonAccessibilityHint;

    Swift

    var detectButtonAccessibilityHint: String? { get set }
  • Text, that is used as an accessibility label for the reset button. The default value is “Reset”.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *resetButtonAccessibilityLabel;

    Swift

    var resetButtonAccessibilityLabel: String? { get set }
  • Text, that is used as an accessibility hint for the reset button. The default value is “Resets document’s edges”.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *resetButtonAccessibilityHint;

    Swift

    var resetButtonAccessibilityHint: String? { get set }
  • Text, that is used as an accessibility label for the rotate button. The default value is “Rotate”.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *rotateButtonAccessibilityLabel;

    Swift

    var rotateButtonAccessibilityLabel: String? { get set }
  • Text, that is used as an accessibility hint for the rotate button. The default value is “Rotate image”.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *rotateButtonAccessibilityHint;

    Swift

    var rotateButtonAccessibilityHint: String? { get set }