ThingsAddWallpadSubViewController.h 878 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // ThingsAddWallpadSubViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 6/30/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDTableViewController.h"
  9. @protocol GroupsModel;
  10. @class SelectButton;
  11. @class CustomLabel;
  12. @class CustomButton;
  13. @interface ThingsAddWallpadSubViewController : JDTableViewController
  14. #pragma mark - Properties
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  16. @property (strong, nonatomic) NSMutableDictionary *wallpads;
  17. @property (weak, nonatomic) IBOutlet SelectButton *btnWallpads;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnAddSubDevice;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblManualDesc;
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnManual;
  21. #pragma mark - Instance Methods
  22. - (IBAction)btnAddSubDeviceTouched:(id)sender;
  23. - (IBAction)btnManualTouched:(id)sender;
  24. @end