// // 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 @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