HomeModeUpdateViewController.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // HomeModeUpdateViewController.h
  3. //
  4. //
  5. // Created by Jason Lee on 10/30/15.
  6. //
  7. //
  8. #import "JDViewController.h"
  9. @class ModeModel;
  10. @class CustomLabel;
  11. @class CustomButton;
  12. @class CustomImageView;
  13. @interface HomeModeUpdateViewController : JDViewController
  14. #pragma mark - Properties
  15. @property (weak, nonatomic) ModeModel *mode;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblMessage;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnExecute;
  18. @property (weak, nonatomic) IBOutlet CustomImageView *imgvMode;
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnSetting;
  20. @property (weak, nonatomic) IBOutlet UIView *tooltip;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblTooltip;
  22. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintTooltipHeight;
  23. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintTooltipWidth;
  24. #pragma mark - Instance Methods
  25. - (IBAction)btnExecuteTouched:(id)sender;
  26. - (IBAction)btnSettingTouched:(id)sender;
  27. - (IBAction)btnCloseTouched:(id)sender;
  28. @end