UNICORN - iOS
MTextFieldView.h
1 //
2 // MTextFieldView.h
3 // GMatch
4 //
5 // Created by saimushi on 2014/10/03.
6 //
7 @interface MTextFieldView : UIView
8 {
9  UIView *bgView;
10  UITextField *onelineField;
11  UITextView *multilineField;
12  UIButton *saveBtn;
13  UILabel *errorLabel;
14  UIView *btnAreaView;
15 }
16 
17 @property (strong, nonatomic) UIView *bgView;
18 @property (strong, nonatomic) UITextField *onelineField;
19 @property (strong, nonatomic) UITextView *multilineField;
20 @property (strong, nonatomic) UIButton *saveBtn;
21 @property (strong, nonatomic) UILabel *errorLabel;
22 @property (strong, nonatomic) UIView *btnAreaView;
23 
24 - (id)initWithFrame:(CGRect)argFrame :(NSString *)argInputString :(int)argNumberOfLine :(id)argTarget;
25 
26 @end
Definition: MTextFieldView.h:7