RootViewController.h 916 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ViewController.h
  3. // AntsContract
  4. //
  5. // Created by Ray on 12/16/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RootViewController : UIViewController
  10. @property (strong, nonatomic) IBOutlet UIButton *buttonHIC;
  11. @property (strong, nonatomic) IBOutlet UIButton *buttonSRL;
  12. @property (strong, nonatomic) IBOutlet UIView *coverView;
  13. @property (strong, nonatomic) IBOutlet UIBarButtonItem *ibSignin;
  14. @property (strong, nonatomic) IBOutlet UILabel *welcomeLabel;
  15. @property (strong, nonatomic) IBOutlet UIButton *btnNewCustomer;
  16. @property (strong, nonatomic) IBOutlet UIButton *btnCustomerPerDoc;
  17. @property (strong, nonatomic) IBOutlet UILabel *labelVer;
  18. -(void) presentLogin:(id)sender;
  19. @property (weak, nonatomic) IBOutlet UIImageView *imageBG;
  20. @property (weak, nonatomic) IBOutlet UIImageView *coverBG;
  21. - (void)dealWithUILogout;
  22. @end