| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // ScenesDetailViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/3/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class SceneModel;
- @class CustomButton;
- @interface ScenesDetailViewController : JDViewController
- #pragma mark - Properties
- @property (strong, nonatomic) SceneModel *scene;
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (weak, nonatomic) IBOutlet UIView *actionTab;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintActionTabHeight;
- @property (weak, nonatomic) IBOutlet CustomButton *btnEdit;
- @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
- #pragma mark - Instance Methods
- - (IBAction)btnEditTouched:(id)sender;
- - (IBAction)btnDeleteTouched:(id)sender;
- @end
- @class CustomButton;
- @interface SceneDetailActivationViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblRunTitle;
- @property (weak, nonatomic) IBOutlet CustomButton *btnRun;
- @end
- @interface ScenesDetailDisableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- @end
|