LoginViewController.h 672 B

12345678910111213141516171819202122
  1. //
  2. // LoginViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/4.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. @interface LoginViewController : BaseViewController
  10. @property(nonatomic,strong) UITextField* txtAccount;
  11. @property(nonatomic,strong) UITextField* txtUserName;
  12. @property(nonatomic,strong) UITextField* txtPassword;
  13. @property(nonatomic,strong) UIButton* btnlogin;
  14. @property(nonatomic,strong) UIButton* btnlset;
  15. @property(nonatomic,strong) UIButton* autoLoginBtn;
  16. @property(nonatomic)BOOL keyboardShow;
  17. @property BOOL autoLogin;
  18. @property (nonatomic, strong) ASIDownManager *mDownManager;
  19. @end