// // PlaceholderTextView.h // YouHuiProject // // Created by 小花 on 2018/2/5. // Copyright © 2018年 kuxuan. All rights reserved. // #import /** * 带默认提示的textView */ @class PlaceholderTextView; @interface PlaceholderTextView : UITextView @property (copy, nonatomic) NSString *placeholder; @property (assign, nonatomic) NSInteger maxLength;//最大长度 @property (strong, nonatomic) UILabel *placeholderLabel; @property (strong, nonatomic) UILabel *wordNumLabel; //文字输入 @property (copy, nonatomic) void(^didChangeText)(PlaceholderTextView *textView); - (void)didChangeText:(void(^)(PlaceholderTextView *textView))block; @end