HomeHubViewController.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 *btnEditTitle; // 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 CustomLabel *lblBrokenTime; // 네트워크 끊긴 시간
  25. @property (weak, nonatomic) IBOutlet UIImageView *imgvStatus; // 네트워크 단절 이미지
  26. @property (weak, nonatomic) IBOutlet CustomButton *btnSet; // 설정 버튼
  27. @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceStatus; // 장치 연결 상태
  28. @end
  29. @interface HomeHubRegistTableViewCell : KNTableViewCell
  30. @property (weak, nonatomic) IBOutlet CustomLabel *lblDate;
  31. @property (weak, nonatomic) IBOutlet CustomLabel *lblFirmCurrentVer; // 펌웨어 현재 버전
  32. @property (weak, nonatomic) IBOutlet CustomLabel *lblFirmNewestVer; // 펌웨어 최신 버전
  33. @property (weak, nonatomic) IBOutlet CustomLabel *lblSoftCurrentVer; // 소프트웨어 현재 버전
  34. @property (weak, nonatomic) IBOutlet CustomLabel *lblSoftNewestVer; // 소프트웨어 최신 버전
  35. @property (weak, nonatomic) IBOutlet CustomButton *btnFirmUpdate;
  36. @property (weak, nonatomic) IBOutlet CustomButton *btnSoftUpdate;
  37. @end
  38. @interface HomeHubInfoTableViewCell : KNTableViewCell
  39. @property (weak, nonatomic) IBOutlet CustomLabel *lblModelName; // 모델명
  40. @property (weak, nonatomic) IBOutlet CustomLabel *lblSerialNum; // 시리얼 번호
  41. @end