Inherits from SCControlCell : SCCustomCell : SCTableViewCell : UITableViewCell
Declared in SCTableViewCell.h

Overview

This class functions as a cell with a UISlider control. The bound property of this cell must be of type NSNumber, int, float, or double.

Tasks

Creation and Initialization

Configuration

  •   slider

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

    property

Properties

slider

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

@property (nonatomic, readonly) UISlider *slider

Declared In

SCTableViewCell.h

Class Methods

cellWithText:boundObject:sliderValuePropertyName:

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

+ (id)cellWithText:(NSString *)cellText boundObject:(NSObject *)object sliderValuePropertyName:(NSString *)propertyName

Parameters

cellText

The text that will appear in the cell’s textLabel.

object

The cell’s bound object (see SCTableViewCell class overview).

propertyName

The cell’s bound property name corresponding to the UISlider’s value. Property must be a readwrite property of type NSNumber.

Declared In

SCTableViewCell.h

Instance Methods

initWithText:boundObject:sliderValuePropertyName:

Returns an initialized SCSliderCell given cell text, bound object, and a bound property name.

- (id)initWithText:(NSString *)cellText boundObject:(NSObject *)object sliderValuePropertyName:(NSString *)propertyName

Parameters

cellText

The text that will appear in the cell’s textLabel.

object

The cell’s bound object (see SCTableViewCell class overview).

propertyName

The cell’s bound property name corresponding to the UISlider’s value. Property must be a readwrite property of type NSNumber.

Declared In

SCTableViewCell.h