SCTextFieldCell

@interface SCTextFieldCell : SCControlCell

This class functions as a cell with a UITextField control. The bound property of this cell must be of type NSString.

Creation and Initialization

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

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

    Declaration

    Objective-C

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

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

    Declaration

    Objective-C

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

Configuration

  • The UITextField 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) UITextField *textField;