12345678910111213141516171819202122232425 |
- #import <UIKit/UIKit.h>
- @interface EMTextView : UITextView
- {
- UIColor *_contentColor;
- BOOL _editing;
- }
- @property(strong, nonatomic) NSString *placeholder;
- @property(strong, nonatomic) UIColor *placeholderColor;
- @end
|