| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // ServiceViewController.h
- // kneet
- //
- // Created by Jason Lee on 6/22/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDTableViewController.h"
- @class CustomButton;
- @class CustomLabel;
- @interface ServiceViewController : JDTableViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomButton *btnDevice;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc1;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceDesc;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblSceneTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblSceneDesc;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblRuleTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblRuleDesc;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblBlog;
- @property (weak, nonatomic) IBOutlet CustomButton *btnBlog;
- #pragma mark - Instance Methods
- - (IBAction)btnDevicesTouched:(id)sender;
- - (IBAction)btnBlogTouched:(id)sender;
- @end
|