12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- //
- // JZTextInputView.h
- // JIZHANG
- //
- // Created by 小花 on 2017/11/22.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class JZTextInputView;
- @protocol JZTextInputViewDelegate <NSObject>
- - (void)JZTextInputView:(JZTextInputView *)inputView didChangeTextWithChangeHeight:(CGFloat)changeHeight;
- @property UIApplication *aSUNOVaHGil;
- @property UIWindow *anZlYLPHrs;@property UIEvent *aHE30L7;
- @property UIColor *aXfrimhMYo;
- @property UIFontWeight *aItAnv;
- @property UIWindow *aWi8IT;@property UIEdgeInsets *a8uEYo1RT3V;
- @property UILabel *aQjSTEhlGw2;
- @property UIEdgeInsets *auZjhXQ;
- @property UIViewController *abQC3sJH78;
- @property UIVisualEffectView *a6nNwWiv;
- @property UIUserInterfaceIdiom *afmlxFQc;
- @property UIAlertAction *a7t5S;
- @property UIDevice *ahpr9bm6cf;
- @property UIApplication *aJYONbr;
- @property UIFont *aoGRUjHVMa;
- @property UIViewController *alkZFGi;
- @property UIVisualEffectView *atoEMm;
- @property UIEvent *aviBF3n;
- @property UIDocument *amfW7gRHwd;
- @property UIImage *aVwv3;
- @property UIDocument *auvbY7AkBHn;
- @property UIBarButtonItem *aIpVc;
- @end
- @interface JZTextInputView : UITextView
- typedef enum {
-
- styleMove_Up = 1<<1, //向上展开
- styleMove_Down = 1<<2, //向下展开
- styleMove_Center = 1<<3, //中心保持不变,同时向上下展开
-
- }MyTextViewStyle;
- @property (nonatomic, weak) id<JZTextInputViewDelegate>textDelegate;
- /**
- 初始化方法(frame高度由font控制)
-
- @param frame 控件大小
- @param font 字体大小
- @return TextView
- */
- - (instancetype)initWithFrame:(CGRect)frame TextFont:(UIFont *)font MoveStyle:(MyTextViewStyle)style;
- /**
- 提示文字
- */
- @property (nonatomic, strong) NSString *placeholder;
- /**
- 最大行数(default:5行)
- */
- @property (nonatomic, assign) NSInteger maxNumberOfLines;
- /**
- 最大字符长度(default:50)
- */
- @property (nonatomic, assign) NSInteger maxCount;
-
- @property UIApplication *aSUNOVaHGil;
- @property UIWindow *anZlYLPHrs;@property UIEvent *aHE30L7;
- @property UIColor *aXfrimhMYo;
- @property UIFontWeight *aItAnv;
- @property UIWindow *aWi8IT;@property UIEdgeInsets *a8uEYo1RT3V;
- @property UILabel *aQjSTEhlGw2;
- @property UIEdgeInsets *auZjhXQ;
- @property UIViewController *abQC3sJH78;
- @property UIVisualEffectView *a6nNwWiv;
- @property UIUserInterfaceIdiom *afmlxFQc;
- @property UIAlertAction *a7t5S;
- @property UIDevice *ahpr9bm6cf;
- @property UIApplication *aJYONbr;
- @property UIFont *aoGRUjHVMa;
- @property UIViewController *alkZFGi;
- @property UIVisualEffectView *atoEMm;
- @property UIEvent *aviBF3n;
- @property UIDocument *amfW7gRHwd;
- @property UIImage *aVwv3;
- @property UIDocument *auvbY7AkBHn;
- @property UIBarButtonItem *aIpVc;
- @end
|