线上所有马甲包模板,与《猎豆》同UI。域名zhuadd

PlaceholderTextView.h 700B

1234567891011121314151617181920212223242526272829
  1. //
  2. // PlaceholderTextView.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/2/5.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. /**
  10. * 带默认提示的textView
  11. */
  12. @class PlaceholderTextView;
  13. @interface PlaceholderTextView : UITextView<UITextViewDelegate>
  14. @property (copy, nonatomic) NSString *placeholder;
  15. @property (assign, nonatomic) NSInteger maxLength;//最大长度
  16. @property (strong, nonatomic) UILabel *placeholderLabel;
  17. @property (strong, nonatomic) UILabel *wordNumLabel;
  18. //文字输入
  19. @property (copy, nonatomic) void(^didChangeText)(PlaceholderTextView *textView);
  20. - (void)didChangeText:(void(^)(PlaceholderTextView *textView))block;
  21. @end