HomeHubSearchSuccessViewController.h 911 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // HomeHubSearchSuccessViewController.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 CustomLabel;
  10. @class CustomImageView;
  11. @class CustomButton;
  12. @class CustomCheckBox;
  13. @interface HomeHubSearchSuccessViewController : JDViewController <BLEServiceHandlerDelegate>
  14. @property (weak, nonatomic) IBOutlet CustomTableView *tableView; //테이블뷰
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
  16. @property (weak, nonatomic) IBOutlet CustomButton *btnNext; // 다음 버튼
  17. @end
  18. @interface HomeHubSearchTableViewCell : KNTableViewCell
  19. @property (weak, nonatomic) IBOutlet UIButton *chkBtn; // 체크 버튼
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblHubName; // 허브 명
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblSerialNum; // 시리얼 번호
  22. @end