| 1234567891011121314151617181920212223242526272829303132 |
- //
- // ViewController.h
- // AntsContract
- //
- // Created by Ray on 12/16/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface RootViewController : UIViewController
- @property (strong, nonatomic) IBOutlet UIButton *buttonHIC;
- @property (strong, nonatomic) IBOutlet UIButton *buttonSRL;
- @property (strong, nonatomic) IBOutlet UIView *coverView;
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *ibSignin;
- @property (strong, nonatomic) IBOutlet UILabel *welcomeLabel;
- @property (strong, nonatomic) IBOutlet UIButton *btnNewCustomer;
- @property (strong, nonatomic) IBOutlet UIButton *btnCustomerPerDoc;
- @property (strong, nonatomic) IBOutlet UILabel *labelVer;
- -(void) presentLogin:(id)sender;
- @property (weak, nonatomic) IBOutlet UIImageView *imageBG;
- @property (weak, nonatomic) IBOutlet UIImageView *coverBG;
- @property (weak, nonatomic) IBOutlet UILabel *labelMode;
- @property (weak, nonatomic) IBOutlet UISwitch *switchMode;
- @property (strong, nonatomic) IBOutlet UILabel *labelDocNumber;
- - (void)dealWithUILogout;
- @end
|