HomeHubViewController.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // HomeHubViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/28/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomImageView;
  11. @class CustomButton;
  12. @interface HomeHubViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnEditName; // Head Title 명 수정 버튼
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // Head Title 명
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
  18. #pragma mark - Instance Methods
  19. - (void)updateHomeHubStatus;
  20. - (IBAction)btnCloseTouched:(id)sender;
  21. @end
  22. @interface HomeHubTableViewCell : KNTableViewCell
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblNetworkStatus; // 네트워크 상태
  24. @property (weak, nonatomic) IBOutlet UIImageView *imgvStatus; // 네트워크 단절 이미지
  25. @property (weak, nonatomic) IBOutlet CustomButton *btnSet; // 설정 버튼
  26. @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceStatus; // 장치 연결 상태
  27. @end
  28. @interface HomeHubRegistTableViewCell : KNTableViewCell
  29. @property (weak, nonatomic) IBOutlet CustomLabel *lblDate;
  30. @property (weak, nonatomic) IBOutlet CustomLabel *lblFirmCurrentVer; // 펌웨어 현재 버전
  31. @property (weak, nonatomic) IBOutlet CustomLabel *lblFirmNewestVer; // 펌웨어 최신 버전
  32. @property (weak, nonatomic) IBOutlet CustomLabel *lblSoftCurrentVer; // 소프트웨어 현재 버전
  33. @property (weak, nonatomic) IBOutlet CustomLabel *lblSoftNewestVer; // 소프트웨어 최신 버전
  34. @end
  35. @interface HomeHubInfoTableViewCell : KNTableViewCell
  36. @property (weak, nonatomic) IBOutlet CustomLabel *lblModelName; // 모델명
  37. @property (weak, nonatomic) IBOutlet CustomLabel *lblSerialNum; // 시리얼 번호
  38. @end