MultiHomeHubViewController.h 935 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MultiHomeHubViewController.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. @interface MultiHomeHubViewController : JDViewController
  13. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
  15. @end
  16. @interface MultiHomeHubTableViewCell : KNTableViewCell
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // Hub Title 명
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnHubDetail; // Hub 상세조회
  19. @property (weak, nonatomic) IBOutlet CustomImageView *imgNetwork; // 네트워크 이미지
  20. @property (weak, nonatomic) IBOutlet CustomImageView *imgDongle; // 동글연결 이미지
  21. @property (weak, nonatomic) IBOutlet CustomImageView *imgUpdate; // 업데이트 이미지
  22. @end