| 1234567891011121314151617 |
- //
- // ServerSettingViewController.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/5.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- @interface ServerSettingViewController : BaseViewController
- @property(nonatomic,strong) UITextField *serverIpTxt;
- @property(nonatomic,strong) UITextField *serverPortTxt;
- @property(nonatomic,strong) UIButton *btnSave;
- @property(nonatomic,strong) UIButton *btnCancel;
- @property(nonatomic)BOOL keyboardShow;
- @end
|