| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // ServerSettingViewController.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/5/5.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:设置ip端口控制器
- //
- #import "BaseViewController.h"
- @interface ServerSettingViewController : BaseViewController
- /**
- ip
- */
- @property (nonatomic,strong) UITextField *txtServerIp;
- /**
- 端口
- */
- @property (nonatomic,strong) UITextField *txtServerPort;
- /**
- 保存
- */
- @property (nonatomic,strong) UIButton *btnSave;
- /**
- 取消
- */
- @property (nonatomic,strong) UIButton *btnCancel;
- /**
- 键盘是否弹出
- */
- @property (nonatomic,assign) BOOL isKeyboardShow;
- @end
|