NewTopicTextView.h 475 B

12345678910111213141516171819202122
  1. //
  2. // NewTopicTextView.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/17.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NewTopicTextView : UITextView
  11. @property (nonatomic, retain) NSString *placeholder;
  12. @property (nonatomic, retain) UIColor *placeholderColor;
  13. @property (nonatomic, retain) UILabel *placeHolderLabel;
  14. -(void)textChanged:(NSNotification*)notification;
  15. @end
  16. NS_ASSUME_NONNULL_END