123456789101112131415161718192021222324252627282930 |
- //
- // YOUPAILZTextView.h
- // VQU
- //
- // Created by CY on 2021/10/29.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YYTextView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZTextView : UIView
- - (instancetype)initWithMaxCount:(NSInteger)maxCount;
- @property (nonatomic,assign)UIEdgeInsets youpaiptextViewPadding;
- @property (nonatomic,weak)YYTextView *youpaiptextView;
- @property (nonatomic,weak)UILabel *youpaiptextLengthL;
- @property (nonatomic,strong)UIColor *youpaiptextLengthDefaultColor;
- @property (nonatomic,strong)UIColor *youpaiptextLengthHigtColor;
- @property (nonatomic,strong)UIFont *youpaiptextLengthFont;
- @property (nonatomic,assign)CGFloat youpaiptextLengthRight;
- @property (nonatomic,assign)CGFloat youpaiptextLengthBottom;
- @end
- NS_ASSUME_NONNULL_END
|