ThingsAddViewController.h 926 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // ThingsAddViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/8/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomImageView;
  11. @class CustomButton;
  12. @class CustomTableView;
  13. @interface ThingsAddViewController : JDViewController
  14. #pragma mark - Properties
  15. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  17. #pragma mark - Instance Methods
  18. - (IBAction)btnCloseTouched:(id)sender;
  19. @end
  20. @interface ThingsAddTableViewCell : KNTableViewCell
  21. @property (weak, nonatomic) IBOutlet CustomImageView *imgvDevice;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceName;
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblVendor;
  24. @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
  25. @property (weak, nonatomic) IBOutlet CustomImageView *imgvProtocol;
  26. @end