12345678910111213141516171819202122 |
- //
- // NewTopicTextView.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/17.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NewTopicTextView : UITextView
- @property (nonatomic, retain) NSString *placeholder;
- @property (nonatomic, retain) UIColor *placeholderColor;
- @property (nonatomic, retain) UILabel *placeHolderLabel;
- -(void)textChanged:(NSNotification*)notification;
- @end
- NS_ASSUME_NONNULL_END
|