| 1234567891011121314151617181920212223 |
- //
- // SetupServerViewController.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 4/1/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SetupServerViewController : UIViewController
- @property (weak, nonatomic) IBOutlet UIButton *btnSelectServer;
- @property (weak, nonatomic) IBOutlet UITextField *editPassword;
- @property (strong, nonatomic) NSArray* serverlist;
- @property bool showCancel;
- @property (weak, nonatomic) IBOutlet UIButton *btnCancel;
- @property (strong, nonatomic) NSDictionary* server;
- @property (nonatomic , copy) void (^returnValue)(void);
- @end
- NS_ASSUME_NONNULL_END
|