ThingsDetailViewController.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 *device;
  13. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  14. @property (weak, nonatomic) IBOutlet UIView *containerView;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintContainerHeight;
  16. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintContainerBottom;
  17. #pragma mark - Instance Methods
  18. - (void)prepareViewDidLoad;
  19. @end
  20. @class CustomLabel;
  21. @class CustomImageView;
  22. @class CustomTextField2;
  23. @interface ThingsDetailImageViewCell : UITableViewCell
  24. @property (weak, nonatomic) IBOutlet CustomImageView *imgvDevice;
  25. @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceName;
  26. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtDeviceName;
  27. @end
  28. @class CustomLabel;
  29. @class CommandClassControlView;
  30. @interface ThingsDetailControlViewCell : UITableViewCell
  31. @property (weak, nonatomic) IBOutlet CustomLabel *lblNodeTitle;
  32. @property (weak, nonatomic) IBOutlet UIView *controlContainerView;
  33. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintContainerTop;
  34. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintContainerHeight;
  35. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintNodeTitleTop;
  36. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintNodeTitleLeft;
  37. @end