123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #import "XLFormTextView.h"
- #import "XLFormBaseCell.h"
- #import <UIKit/UIKit.h>
- extern NSString *const XLFormTextViewLengthPercentage;
- extern NSString *const XLFormTextViewMaxNumberOfCharacters;
- @interface XLFormTextViewCell : XLFormBaseCell
- @property (nonatomic, readonly) UILabel * label DEPRECATED_ATTRIBUTE DEPRECATED_MSG_ATTRIBUTE("Use textLabel instead");
- @property (nonatomic, readonly) UILabel * textLabel;
- @property (nonatomic, readonly) XLFormTextView * textView;
- @property (nonatomic) NSNumber *textViewLengthPercentage;
- @property (nonatomic) NSNumber *textViewMaxNumberOfCharacters;
- @end
|