| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // ScenesViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/1/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @interface ScenesViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- #pragma mark - Instance Methods
- - (void)updateScene:(SceneModel *)scene;
- @end
- @class CustomButton;
- @class CustomLabel;
- @interface ScenesTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomButton *btnRun;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblSceneName;
- @end
- @interface ScenesAddTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblActionDesc;
- - (IBAction)btnAddTouched:(id)sender;
- @end
|