ZZTextInputWidget.h 575 B

12345678910111213141516171819202122232425
  1. //
  2. // ZZTextInputWidget.h
  3. // ZZUIKit
  4. //
  5. // Created by Max on 2021/4/6.
  6. //
  7. #import <FlexLib/FlexLib.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ZZTextInputWidget : FlexCustomBaseView
  10. /// 占位文字
  11. @property(nonatomic,copy) NSString *placehold;
  12. @property(nonatomic,assign) NSInteger maxCount;
  13. @property(nonatomic,assign,readonly) NSInteger currentCount;
  14. /// 计数文字的格式化字符串
  15. @property(nonatomic,copy,nullable) NSString *countFormat;
  16. @property(nonatomic,copy) NSString *text;
  17. @property(nonatomic,strong) FlexTextView *textView;
  18. @end
  19. NS_ASSUME_NONNULL_END