ThingsDetailViewController.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // ThingsDetailViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 3/16/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class DeviceModel;
  10. @interface ThingsDetailViewController : JDViewController
  11. #pragma mark - Properties
  12. @property (strong, nonatomic) DeviceModel *refDevice;
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  14. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  15. #pragma mark - Instance Methods
  16. - (void)prepareViewDidLoad;
  17. - (IBAction)btnOptionTouched:(id)sender;
  18. - (IBAction)btnCloseTouched:(id)sender;
  19. @end
  20. @class CustomLabel;
  21. @class CustomImageView;
  22. @class CustomTextField2;
  23. @interface ThingsDetailTitleTableViewCell : KNTableViewCell
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceName;
  25. @property (weak, nonatomic) IBOutlet CustomImageView *imgvDevice;
  26. @end
  27. @interface ThingsDetailControlTableViewCell : KNTableViewCell
  28. @property (weak, nonatomic) IBOutlet UIView *controlContainer;
  29. @end
  30. @interface ThingsDetailOptionTableViewCell : KNTableViewCell
  31. @property (weak, nonatomic) IBOutlet CustomLabel *lblNodeName;
  32. @property (weak, nonatomic) IBOutlet CustomLabel *lblNodeValue;
  33. @end