HomeHubWifiPasswdInputViewController.h 702 B

12345678910111213141516171819202122
  1. //
  2. // HomeHubWifiPasswdInputViewController.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 5. 11..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomTextField;
  10. @interface HomeHubWifiPasswdInputViewController : JDViewController
  11. @property (weak, nonatomic) IBOutlet CustomLabel *lblSSID; // SSID 명
  12. @property (weak, nonatomic) IBOutlet CustomButton *btnAgainSearch; // 재검색 버튼
  13. @property (weak, nonatomic) IBOutlet CustomTextField *txtInputPasswd; // Passwd 입력 필드
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnConnect; // 연결 버튼
  16. @end