| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // HomeModeUpdateViewController.h
- //
- //
- // Created by Jason Lee on 10/30/15.
- //
- //
- #import "JDViewController.h"
- @class ModeModel;
- @class CustomLabel;
- @class CustomButton;
- @class CustomImageView;
- @interface HomeModeUpdateViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) ModeModel *mode;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMessage;
- @property (weak, nonatomic) IBOutlet CustomButton *btnExecute;
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvMode;
- @property (weak, nonatomic) IBOutlet CustomButton *btnSetting;
- @property (weak, nonatomic) IBOutlet UIView *tooltip;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTooltip;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintTooltipHeight;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintTooltipWidth;
- #pragma mark - Instance Methods
- - (IBAction)btnExecuteTouched:(id)sender;
- - (IBAction)btnSettingTouched:(id)sender;
- - (IBAction)btnCloseTouched:(id)sender;
- @end
|