// // TFTextView.h // TFReader // // Created by 谢腾飞 on 2020/12/23. // Copyright © 2020 xtfei_2011@126.com. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol TFTextViewDelegate @optional - (void)textViewDidChange:(NSString *)text; @end @interface TFTextView : UIView @property (nonatomic ,assign) NSUInteger maxWordCount; @property (nonatomic ,copy ,readonly) NSString *text; @property (nonatomic ,weak) id delegate; - (void)resetPlaceholderText:(NSString *)placeholderText; @end NS_ASSUME_NONNULL_END