SCPReaderSettings

Objective-C


@interface SCPReaderSettings : NSObject

Swift

class ReaderSettings : NSObject

Class representing the current settings of the reader.

  • Accessibility status of the reader.

    Declaration

    Objective-C

    @property (nonatomic, readonly) SCPReaderAccessibility *_Nonnull accessibility;

    Swift

    var accessibility: ReaderAccessibility { get }
  • The buzzer (beep) volume result for this reader.

    buzzerVolume.volume is non-nil when the reader supports buzzer volume control. buzzerVolume.error is non-nil when the reader does not support it.

    Declaration

    Objective-C

    @property (nonatomic, readonly) SCPReaderBuzzerVolume *_Nonnull buzzerVolume;

    Swift

    var buzzerVolume: ReaderBuzzerVolume { 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;