ServerSettingViewController.h 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // LoginSettingViewController.h
  3. // RA Image
  4. //
  5. // Created by Jack on 2017/4/27.
  6. // Copyright © 2017年 USAI. All rights reserved.
  7. //
  8. //#import "BasicViewController.h"
  9. #import "ActiveViewController.h"
  10. static NSString *kScanAddress = @"ScanAddress";
  11. @interface ServerSettingViewController : ActiveViewController
  12. //@property (nonatomic,copy) void(^returnValue)(NSString * name, NSString* address);
  13. @property (nonatomic,weak) UIView *currentFirstResponder;
  14. @property (weak, nonatomic) IBOutlet UIButton *btnSetServer;
  15. @property (strong, nonatomic) IBOutlet UISwitch *autoSwitch;
  16. @property (strong, nonatomic) IBOutlet UITextField *retryCountBox;
  17. @property (strong, nonatomic) IBOutlet UITextField *retryTimeIntervalBox;
  18. @property (weak, nonatomic) IBOutlet UILabel *labelUpdate;
  19. @property (weak, nonatomic) IBOutlet UILabel *labelPriceGroup;
  20. @property (weak, nonatomic) IBOutlet UIButton *btnSetPriceGroup;
  21. @property (weak, nonatomic) IBOutlet UIButton *btnSync;
  22. @property (weak, nonatomic) IBOutlet UILabel *labelStock;
  23. @end