| 12345678910111213141516171819202122 |
- //
- // LoginViewController.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/4.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- @interface LoginViewController : BaseViewController
- @property(nonatomic,strong) UITextField* txtAccount;
- @property(nonatomic,strong) UITextField* txtUserName;
- @property(nonatomic,strong) UITextField* txtPassword;
- @property(nonatomic,strong) UIButton* btnlogin;
- @property(nonatomic,strong) UIButton* btnlset;
- @property(nonatomic,strong) UIButton* autoLoginBtn;
- @property(nonatomic)BOOL keyboardShow;
- @property BOOL autoLogin;
- @property (nonatomic, strong) ASIDownManager *mDownManager;
- @end
|