| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // HomeHubWifiSearchSuccessViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 5. 11..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- #import "CustomTableView.h"
- #import "CustomCheckBox.h"
- @class KNTableViewCell;
- @interface HomeHubWifiSearchSuccessViewController : JDViewController <BLEServiceHandlerDelegate>
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView; //테이블뷰
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
- @property (weak, nonatomic) IBOutlet CustomButton *btnNext; // 다음 버튼
- @property (strong, nonatomic) NSMutableArray *wifiList;
- @end
- @interface HomeHubWifiSearchTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvWifi; // Wi-Fi 이미지
- @property (weak, nonatomic) IBOutlet CustomLabel *lblHubName; // 허브 명
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkBtn; // 체크 버튼
- @end
|