ZCLiveTextView.h 570 B

12345678910111213141516171819
  1. //
  2. // TLSLiveTextView.h
  3. // tls
  4. //
  5. // Created by 张灿 on 2017/4/24.
  6. // Copyright © 2017年 tianlishe. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ZCLiveTextView : UIView
  10. @property (nonatomic, copy) NSString *placeholder;
  11. @property (nonatomic, strong) UIColor *placeholderColor;
  12. @property (nonatomic, strong) UIColor *timeoutAlertColor;
  13. @property (nonatomic,assign)NSInteger textLength;
  14. @property (nonatomic, weak) UITextView *textView;
  15. - (instancetype)initWithFrame:(CGRect)frame TopMargin:(CGFloat)topMargin LeftMargin:(CGFloat)leftMargin;
  16. @end