| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // ThingsInfoViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/21/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class DeviceModel;
- @class CustomButton;
- @interface ThingsInfoViewController : JDViewController
- #pragma mark - Properties
- @property (strong, nonatomic) DeviceDetailModel *deviceDetail;
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
- #pragma mark - Instance Methods
- @end
- @class CustomLabel;
- @interface ThingsInfoTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblContent;
- @end
|