| 12345678910111213141516171819202122 |
- //
- // HomeHubWifiPasswdInputViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 5. 11..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomTextField;
- @interface HomeHubWifiPasswdInputViewController : JDViewController
- @property (weak, nonatomic) IBOutlet CustomLabel *lblSSID; // SSID 명
- @property (weak, nonatomic) IBOutlet CustomButton *btnAgainSearch; // 재검색 버튼
- @property (weak, nonatomic) IBOutlet CustomTextField *txtInputPasswd; // Passwd 입력 필드
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
- @property (weak, nonatomic) IBOutlet CustomButton *btnConnect; // 연결 버튼
- @end
|