| 1234567891011121314151617181920212223242526 |
- //
- // AppDelegate.h
- // AntsContract
- //
- // Created by Ray on 12/16/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface AppDelegate : UIResponder <UIApplicationDelegate>
- @property (strong, nonatomic) UIWindow *window;
- @property bool bEnable_Cache;
- @property bool bLogin;
- @property (strong,nonatomic) NSString* user;
- @property (strong,nonatomic) NSString * password;
- @property (strong,nonatomic) NSString* build;
- -(void) Logout;
- -(void) Login:(NSString* )user pwd:(NSString*) pwd;
- @property (strong,nonatomic) NSString* printerURL;
- @property (strong,nonatomic) NSMutableDictionary* shareFile;
- @end
|