| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // ThingsAddViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/8/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomImageView;
- @class CustomButton;
- @class CustomTableView;
- @interface ThingsAddViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) DeviceModel *selectHub;
- #pragma mark - Instance Methods
- - (IBAction)btnCloseTouched:(id)sender;
- @end
- @interface ThingsAddTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvDevice;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceName;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblVendor;
- @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvProtocol;
- @end
|