HomeHubViewController.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. @interface HomeHubViewController : JDViewController
  12. #pragma mark - Properties
  13. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  14. #pragma mark - Instance Methods
  15. - (IBAction)btnCloseTouched:(id)sender;
  16. @end
  17. @interface HomeHubTableViewCell : KNTableViewCell
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblStatus;
  19. @property (weak, nonatomic) IBOutlet CustomImageView *imgvStatus;
  20. @end
  21. @interface HomeHubRegistTableViewCell : KNTableViewCell
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblDate;
  23. @end
  24. @interface HomeHubSecureTableViewCell : KNTableViewCell
  25. @property (weak, nonatomic) IBOutlet CustomButton *btnSecure;
  26. @property (weak, nonatomic) IBOutlet CustomLabel *lblCaution;
  27. @end
  28. @interface HomeHubInfoTableViewCell : KNTableViewCell
  29. @property (weak, nonatomic) IBOutlet CustomLabel *lblInfo;
  30. @end