ServerSettingViewController.h 501 B

1234567891011121314151617
  1. //
  2. // ServerSettingViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/5.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. @interface ServerSettingViewController : BaseViewController
  10. @property(nonatomic,strong) UITextField *serverIpTxt;
  11. @property(nonatomic,strong) UITextField *serverPortTxt;
  12. @property(nonatomic,strong) UIButton *btnSave;
  13. @property(nonatomic,strong) UIButton *btnCancel;
  14. @property(nonatomic)BOOL keyboardShow;
  15. @end