// // 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