MMPlaceHolderTextView.h 630 B

123456789101112131415161718192021222324
  1. //
  2. // PlaceHolderTextView.h
  3. // RichTextEditDemo
  4. //
  5. // Created by aron on 2017/3/10.
  6. // Copyright © 2017年 aron. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface MMPlaceHolderTextView : UITextView
  10. @property (nonatomic, copy) NSString* placeHolder;
  11. @property (nonatomic, assign) CGRect placeHolderFrame;
  12. @property (nonatomic, strong) UIColor* placeHolderColor;
  13. @property (nonatomic, assign) BOOL showPlaceHolder;
  14. @property (nonatomic, assign) NSInteger maxInputs;///<最大输入限制,默认值为1000
  15. @property (nonatomic, assign) BOOL debugMode;
  16. - (void)handleTextDidChange;
  17. - (CGFloat)measureHeight;
  18. @end