ServerSettingViewController.h 924 B

1234567891011121314151617181920212223242526272829
  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. @end