HomeHubWifiSearchSuccessViewController.h 817 B

12345678910111213141516171819202122232425262728
  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. @class KNTableViewCell;
  10. @interface HomeHubWifiSearchSuccessViewController : JDViewController
  11. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  12. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
  13. @property (weak, nonatomic) IBOutlet CustomButton *btnNext; // 다음 버튼
  14. @end
  15. @interface HomeHubSearchTableViewCell : KNTableViewCell
  16. @property (weak, nonatomic) IBOutlet CustomImageView *imgvWifi; // Wi-Fi 이미지
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblHubName; // 허브 명
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnCheck; // 체크 버튼
  19. @end