MBOverlaySettings

Objective-C


@interface MBOverlaySettings : NSObject <NSCopying>

Swift

class MBOverlaySettings : NSObject, NSCopying

Settings class containing UI information

  • If default overlay contains textual information, text will be localized to this language

    Default: nil, because it uses default language of the device

    Declaration

    Objective-C

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

    Swift

    var language: String? { get set }
  • Camera settings

    Declaration

    Objective-C

    @property (nonatomic, strong) MBCameraSettings *_Nonnull cameraSettings;

    Swift

    var cameraSettings: MBCameraSettings { get set }
  • Initializes the object with default settings (see above for defaults).

    Declaration

    Objective-C

    - (nonnull instancetype)init;

    Swift

    init()

    Return Value

    object initialized with default values.