ThingsInfoViewController.h 723 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // ThingsInfoViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/21/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class DeviceModel;
  10. @class CustomButton;
  11. @interface ThingsInfoViewController : JDViewController
  12. #pragma mark - Properties
  13. @property (strong, nonatomic) DeviceDetailModel *deviceDetail;
  14. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
  16. #pragma mark - Instance Methods
  17. @end
  18. @class CustomLabel;
  19. @interface ThingsInfoTableViewCell : UITableViewCell
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblContent;
  22. @end