YOUPAILZTextView.h 805 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // YOUPAILZTextView.h
  3. // VQU
  4. //
  5. // Created by CY on 2021/10/29.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YYTextView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAILZTextView : UIView
  12. - (instancetype)initWithMaxCount:(NSInteger)maxCount;
  13. @property (nonatomic,assign)UIEdgeInsets youpaiptextViewPadding;
  14. @property (nonatomic,weak)YYTextView *youpaiptextView;
  15. @property (nonatomic,weak)UILabel *youpaiptextLengthL;
  16. @property (nonatomic,strong)UIColor *youpaiptextLengthDefaultColor;
  17. @property (nonatomic,strong)UIColor *youpaiptextLengthHigtColor;
  18. @property (nonatomic,strong)UIFont *youpaiptextLengthFont;
  19. @property (nonatomic,assign)CGFloat youpaiptextLengthRight;
  20. @property (nonatomic,assign)CGFloat youpaiptextLengthBottom;
  21. @end
  22. NS_ASSUME_NONNULL_END