1234567891011121314151617181920212223242526272829 |
- //
- // PlaceholderTextView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/2/5.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- /**
- * 带默认提示的textView
- */
- @class PlaceholderTextView;
- @interface PlaceholderTextView : UITextView<UITextViewDelegate>
- @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
|