| 1234567891011121314151617181920212223242526272829 |
- //
- // LoginViewController.h
- // Apex Mobile
- //
- // Created by Ray on 25/01/2018.
- // Copyright © 2018 United Software Applications, Inc. All rights reserved.
- //
- #import "RABaseViewController.h"
- @interface LoginViewController : RABaseViewController<UITextFieldDelegate>
- @property (nonatomic , copy) void (^loginSuccessful)(NSString *user,NSString *password);
- @property (strong, nonatomic) IBOutlet UIButton *checkSavePassword;
- @property (strong, nonatomic) IBOutlet UITextField *editUser;
- @property (strong, nonatomic) IBOutlet UITextField *editPassword;
- @property (strong, nonatomic) IBOutlet UIButton *loginButton;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @property (strong, nonatomic) IBOutlet UIButton *btnRetrievePassword;
- @property bool resize;
- @property int ioffset;
- - (void)clear;
- @end
|