HomeModeSettingsViewController.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. @property (weak, nonatomic) IBOutlet CustomLabel *lbTitle;
  18. #pragma mark - Instance Methods
  19. - (IBAction)btnCompleteTouched:(id)sender;
  20. - (IBAction)btnCancelTouched:(id)sender;
  21. @end
  22. @interface HomeSettingsTitleTableViewCell : KNTableViewCell
  23. @property (weak, nonatomic) IBOutlet CustomImageView *imgvMode;
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblModeTitle;
  25. @end
  26. @interface HomeSettingsDeviceTableViewCell : KNTableViewCell
  27. @property (weak, nonatomic) IBOutlet CustomImageView *imgvDevice;
  28. @property (weak, nonatomic) IBOutlet CustomLabel *lblDeviceName;
  29. @property (weak, nonatomic) IBOutlet CustomLabel *lblNodeName;
  30. @property (weak, nonatomic) IBOutlet CustomLabel *lblActionName;
  31. @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
  32. @end
  33. @interface HomeSettingsAppendTableViewCell : KNTableViewCell
  34. @property (weak, nonatomic) IBOutlet CustomButton *btnAppend;
  35. @end