| 1234567891011121314151617181920212223242526 |
- //
- // HomeHubWifiSearchSuccessViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 5. 11..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @interface HomeHubWifiSearchSuccessViewController : JDViewController
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
- @property (weak, nonatomic) IBOutlet CustomButton *btnNext; // 다음 버튼
- @end
- @interface HomeHubSearchTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvWifi; // Wi-Fi 이미지
- @property (weak, nonatomic) IBOutlet CustomLabel *lblHubName; // 허브 명
- @property (weak, nonatomic) IBOutlet CustomButton *btnCheck; // 체크 버튼
- @end
|