BTUIKSwitchFormField

Objective-C

@interface BTUIKSwitchFormField : UIView

- (instancetype)initWithTitle:(NSString *)title;

/// The switch
@property (nonatomic, strong) UISwitch *switchControl;

@end

Swift

class BTUIKSwitchFormField : UIView

Undocumented

  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithTitle:(NSString *)title;

    Swift

    init(title: String)
  • The switch

    Declaration

    Objective-C

    @property (nonatomic, strong) UISwitch *_Nonnull switchControl;

    Swift

    var switchControl: UISwitch { get set }