1234567891011121314 |
- #import <UIKit/UIKit.h>
- @interface UITextView (Placeholder)
- @property (nonatomic, readonly) UILabel *placeholderLabel;
- @property (nonatomic, strong) IBInspectable NSString *placeholder;
- @property (nonatomic, strong) NSAttributedString *attributedPlaceholder;
- @property (nonatomic, strong) IBInspectable UIColor *placeholderColor;
- + (UIColor *)defaultPlaceholderColor;
- @end
|