12345678910111213141516171819202122232425262728293031323334353637383940 |
- #import "XLFormBaseCell.h"
- #import <UIKit/UIKit.h>
- extern NSString *const XLFormTextFieldLengthPercentage;
- extern NSString *const XLFormTextFieldMaxNumberOfCharacters;
- @interface XLFormTextFieldCell : XLFormBaseCell <XLFormReturnKeyProtocol>
- @property (nonatomic, readonly) UILabel * textLabel;
- @property (nonatomic, readonly) UITextField * textField;
- @property (nonatomic) NSNumber *textFieldLengthPercentage;
- @property (nonatomic) NSNumber *textFieldMaxNumberOfCharacters;
- @end
|