ServiceViewController.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // ServiceViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 6/22/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDTableViewController.h"
  9. @class CustomButton;
  10. @class CustomLabel;
  11. @interface ServiceViewController : JDTableViewController
  12. #pragma mark - Properties
  13. @property (weak, nonatomic) IBOutlet CustomButton *btnDevice;
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc1;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceTitle;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceDesc;
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblSceneTitle;
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblSceneDesc;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblRuleTitle;
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblRuleDesc;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblBlog;
  22. @property (weak, nonatomic) IBOutlet CustomButton *btnBlog;
  23. #pragma mark - Instance Methods
  24. - (IBAction)btnDevicesTouched:(id)sender;
  25. - (IBAction)btnBlogTouched:(id)sender;
  26. @end