// // FSTextInputView.h // FashionApp // // Created by 1 on 2018/5/25. // Copyright © 2018年 1. All rights reserved. // #import @class FSTextInputView; @protocol FSTextInputViewDelegate - (void)didChangeText:(FSTextInputView *)textInputView; @end @interface FSTextInputView : UIView @property (nonatomic, assign) UIEdgeInsets padding; @property (nonatomic, readonly) NSString *content; @property (nonatomic, assign) NSUInteger maxTextLength; // 最多字符 default: 14000 @property (nonatomic, assign) CGFloat minHeight; @property (nonatomic, strong) UILabel *placeHolderLabel; @property (nonatomic, strong) UITextView *textview; @property (nonatomic, weak) id delegate; @property (nonatomic, strong) void (^didChangeText)(FSTextInputView *inputView); - (void)resignFirstResp; - (void)clear; @end