HomeModeSettingsViewController.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // HomeModeSettingsViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 11/3/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class ModeModel;
  10. @class CustomImageView;
  11. @class CustomLabel;
  12. @interface HomeModeSettingsViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) ModeModel *mode;
  15. @property (strong, nonatomic) NSMutableArray<ItemModel> *items;
  16. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  17. #pragma mark - Instance Methods
  18. - (IBAction)btnCompleteTouched:(id)sender;
  19. - (IBAction)btnCancelTouched:(id)sender;
  20. @end
  21. @interface HomeSettingsTitleTableViewCell : KNTableViewCell
  22. @property (weak, nonatomic) IBOutlet CustomImageView *imgvMode;
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblModeTitle;
  24. @end
  25. @interface HomeSettingsDeviceTableViewCell : KNTableViewCell
  26. @property (weak, nonatomic) IBOutlet CustomImageView *imgvDevice;
  27. @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceName;
  28. @property (weak, nonatomic) IBOutlet CustomLabel *lblNodeName;
  29. @property (weak, nonatomic) IBOutlet CustomLabel *lblActionName;
  30. @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
  31. @end
  32. @interface HomeSettingsAppendTableViewCell : KNTableViewCell
  33. @property (weak, nonatomic) IBOutlet CustomButton *btnAppend;
  34. @end