SCSwitchCell

@interface SCSwitchCell : SCControlCell

This class functions as a cell with a UISwitch control. The bound property of this cell must be of type NSNumber or BOOL.

Creation and Initialization

  • Allocates and returns an initialized SCSwitchCell given cell text, bound object, and a bound property name.

    • - parameter: cellText The text that will appear in the cell’s textLabel.
    • - parameter: object The cell’s bound object (see SCTableViewCell class overview).
    • - parameter: propertyName The cell’s bound property name corresponding to the UISwitch’s on value. Property must be a readwrite property of type NSNumber.

    Declaration

    Objective-C

    + (instancetype)cellWithText:(NSString *)cellText
                     boundObject:(NSObject *)object
            switchOnPropertyName:(NSString *)propertyName;
  • Returns an initialized SCSwitchCell given cell text, bound object, and a bound property name.

    • - parameter: cellText The text that will appear in the cell’s textLabel.
    • - parameter: object The cell’s bound object (see SCTableViewCell class overview).
    • - parameter: propertyName The cell’s bound property name corresponding to the UISwitch’s on value. Property must be a readwrite property of type NSNumber.

    Declaration

    Objective-C

    - (instancetype)initWithText:(NSString *)cellText
                     boundObject:(NSObject *)object
            switchOnPropertyName:(NSString *)propertyName;

Configuration

  • The UISwitch control associated with the cell. Even though this property is readonly, feel free to customize any of the control’s properties.

    Declaration

    Objective-C

    @property (nonatomic, readonly) UISwitch *switchControl;