HomeHubViewController.h 773 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. - (void)updateHomeHubStatus;
  16. - (IBAction)btnCloseTouched:(id)sender;
  17. @end
  18. @interface HomeHubTableViewCell : KNTableViewCell
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblStatus;
  20. @property (weak, nonatomic) IBOutlet UIImageView *imgvStatus;
  21. @end
  22. @interface HomeHubRegistTableViewCell : KNTableViewCell
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblDate;
  24. @end