OLOSettingViewController.h 560 B

1234567891011121314151617181920
  1. //
  2. // OLOSettingViewController.h
  3. // iSales-UWAVER
  4. //
  5. // Created by Rui Zhang on 1/7/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface OLOSettingViewController : UIViewController
  11. @property (weak, nonatomic) IBOutlet UISwitch *switch_enable;
  12. @property (weak, nonatomic) IBOutlet UITextField *textfieldName;
  13. @property (weak, nonatomic) IBOutlet UITextField *textfieldServer;
  14. @property (nonatomic , copy) void (^returnValue)(int type);
  15. @end
  16. NS_ASSUME_NONNULL_END