ScenesDetailViewController.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // ScenesDetailViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/3/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class SceneModel;
  10. @class CustomButton;
  11. @interface ScenesDetailViewController : JDViewController
  12. #pragma mark - Properties
  13. @property (strong, nonatomic) SceneModel *scene;
  14. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  15. @property (weak, nonatomic) IBOutlet UIView *actionTab;
  16. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintActionTabHeight;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnEdit;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
  19. #pragma mark - Instance Methods
  20. - (IBAction)btnEditTouched:(id)sender;
  21. - (IBAction)btnDeleteTouched:(id)sender;
  22. @end
  23. @class CustomButton;
  24. @interface SceneDetailActivationViewCell : UITableViewCell
  25. @property (weak, nonatomic) IBOutlet CustomLabel *lblRunTitle;
  26. @property (weak, nonatomic) IBOutlet CustomButton *btnRun;
  27. @end
  28. @interface ScenesDetailDisableViewCell : UITableViewCell
  29. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  30. @end