| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // RulesViewController.h
- // kneet
- //
- // Created by Jason Lee on 3/18/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class RuleModel;
- @interface RulesViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- #pragma mark - Instance Methods
- - (void)prepareViewDidLoad;
- - (void)updateRule:(RuleModel *)scene;
- @end
- @class CustomImageView;
- @class CustomLabel;
- @interface RulesTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvState;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblRuleName;
- @end
- @interface RulesAddTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- - (IBAction)btnAddTouched:(id)sender;
- @end
|