SetupServerViewController.h 682 B

1234567891011121314151617181920212223
  1. //
  2. // SetupServerViewController.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 4/1/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SetupServerViewController : UIViewController
  11. @property (weak, nonatomic) IBOutlet UIButton *btnSelectServer;
  12. @property (weak, nonatomic) IBOutlet UITextField *editPassword;
  13. @property (strong, nonatomic) NSArray* serverlist;
  14. @property bool showCancel;
  15. @property (weak, nonatomic) IBOutlet UIButton *btnCancel;
  16. @property (strong, nonatomic) NSDictionary* server;
  17. @property (nonatomic , copy) void (^returnValue)(void);
  18. @end
  19. NS_ASSUME_NONNULL_END