RulesViewController.h 812 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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)updateRule:(RuleModel *)scene;
  16. @end
  17. @class CustomImageView;
  18. @class CustomLabel;
  19. @interface RulesTableViewCell : UITableViewCell
  20. @property (weak, nonatomic) IBOutlet CustomImageView *imgvState;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblRuleName;
  22. @end
  23. @interface RulesAddTableViewCell : UITableViewCell
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  25. - (IBAction)btnAddTouched:(id)sender;
  26. @end