HomeHubWifiSearchSuccessViewController.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // HomeHubWifiSearchSuccessViewController.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. #import "CustomTableView.h"
  10. #import "CustomCheckBox.h"
  11. @class KNTableViewCell;
  12. @interface HomeHubWifiSearchSuccessViewController : JDViewController <BLEServiceHandlerDelegate>
  13. @property (weak, nonatomic) IBOutlet CustomTableView *tableView; //테이블뷰
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnNext; // 다음 버튼
  16. @property (weak, nonatomic) IBOutlet CustomImageView *imgvLoading; // 로딩 이미지
  17. @property (strong, nonatomic) NSMutableArray *wifiList;
  18. @end
  19. @interface HomeHubWifiSearchTableViewCell : KNTableViewCell
  20. @property (weak, nonatomic) IBOutlet CustomImageView *imgvWifi; // Wi-Fi 이미지
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblHubName; // 허브 명
  22. @property (weak, nonatomic) IBOutlet UIButton *chkBtn; // 체크 버튼
  23. @end