| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // ThingsAddIncludeViewController.h
- // kneet2
- //
- // Created by Jason Lee on 11/13/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class DeviceModel;
- @class CustomLabel;
- @class CustomButton;
- @interface ThingsAddIncludeViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) NSDictionary *addableDevice;
- @property (weak, nonatomic) DeviceModel *removableDevice;
- @property (weak, nonatomic) IBOutlet UIView *maskView;
- @property (weak, nonatomic) IBOutlet UIView *popView;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- @property (weak, nonatomic) IBOutlet CustomButton *btnProgress;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblElapsedTime;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
- #pragma mark - Instance Methods
- - (IBAction)btnCancelTouched:(id)sender;
- @end
|