ServerSettingViewController.h 678 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // ServerSettingViewController.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/5/5.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:设置ip端口控制器
  9. //
  10. #import "BaseViewController.h"
  11. @interface ServerSettingViewController : BaseViewController
  12. /**
  13. ip
  14. */
  15. @property (nonatomic,strong) UITextField *txtServerIp;
  16. /**
  17. 端口
  18. */
  19. @property (nonatomic,strong) UITextField *txtServerPort;
  20. /**
  21. 保存
  22. */
  23. @property (nonatomic,strong) UIButton *btnSave;
  24. /**
  25. 取消
  26. */
  27. @property (nonatomic,strong) UIButton *btnCancel;
  28. /**
  29. 键盘是否弹出
  30. */
  31. @property (nonatomic,assign) BOOL isKeyboardShow;
  32. @end