RulesViewController.h 849 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // RulesViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 3/18/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class RuleModel;
  10. @interface RulesViewController : JDViewController
  11. #pragma mark - Properties
  12. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  13. #pragma mark - Instance Methods
  14. - (void)prepareViewDidLoad;
  15. - (void)updateHomeHubStatusToRules;
  16. - (void)updateRule:(RuleModel *)scene;
  17. @end
  18. @class CustomImageView;
  19. @class CustomLabel;
  20. @interface RulesTableViewCell : UITableViewCell
  21. @property (weak, nonatomic) IBOutlet CustomImageView *imgvState;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblRuleName;
  23. @end
  24. @interface RulesAddTableViewCell : UITableViewCell
  25. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  26. - (IBAction)btnAddTouched:(id)sender;
  27. @end