YZInputView.h 789 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // YZInputView.h
  3. // YZInputView
  4. //
  5. // Created by yz on 16/8/1.
  6. // Copyright © 2016年 yz. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface YZInputView : UITextView
  10. /**
  11. * textView最大行数
  12. */
  13. @property (nonatomic, assign) NSUInteger maxNumberOfLines;
  14. /**
  15. * 文字高度改变block → 文字高度改变会自动调用
  16. * block参数(text) → 文字内容
  17. * block参数(textHeight) → 文字高度
  18. */
  19. @property (nonatomic, strong) void(^yz_textHeightChangeBlock)(NSString *text,CGFloat textHeight);
  20. /**
  21. * 设置圆角
  22. */
  23. @property (nonatomic, assign) NSUInteger cornerRadius;
  24. /**
  25. * 占位文字
  26. */
  27. @property (nonatomic, strong) NSString *placeholder;
  28. /**
  29. * 占位文字颜色
  30. */
  31. @property (nonatomic, strong) UIColor *placeholderColor;
  32. @end