| 1234567891011121314151617181920212223242526 |
- //
- // OfflineSettingViewController.h
- // iSales-NPD
- //
- // Created by Ray on 5/11/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface OfflineSettingViewController : UIViewController
- @property (strong, nonatomic) IBOutlet UISwitch *switch_offline;
- @property (strong, nonatomic) IBOutlet UILabel *label_ver;
- @property (strong, nonatomic) IBOutlet UILabel *label_cachesize;
- @property (strong, nonatomic) IBOutlet UIButton *btn_checkupdate;
- @property (strong, nonatomic) IBOutlet UIButton *btn_submitlocal;
- @property (strong, nonatomic) IBOutlet UISwitch *switch_full_update;
- @property (strong, nonatomic) IBOutlet UILabel *label_sync;
- @property bool bunlock;
- @property (strong, nonatomic) IBOutlet UIButton *btn_clearcache;
- //-(void) onLogUpdate;
- //-(void) onProgressUpdate;
- @end
|