ScenesViewController.h 770 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // ScenesViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/1/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @interface ScenesViewController : JDViewController
  10. #pragma mark - Properties
  11. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  12. #pragma mark - Instance Methods
  13. - (void)updateScene:(SceneModel *)scene;
  14. @end
  15. @class CustomButton;
  16. @class CustomLabel;
  17. @interface ScenesTableViewCell : UITableViewCell
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnRun;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblSceneName;
  20. @end
  21. @interface ScenesAddTableViewCell : UITableViewCell
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblActionDesc;
  23. - (IBAction)btnAddTouched:(id)sender;
  24. @end