// // 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 CustomLabel *lblElapsedTime; // 타이머 @property (weak, nonatomic) IBOutlet CustomImageView *imgStep; // 스텝 이미지 @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // 장치 타이틀 @property (weak, nonatomic) IBOutlet CustomImageView *imgThings; // 장치 이미지 @property (weak, nonatomic) IBOutlet CustomImageView *imgLoading; // 타이머 이미지 @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop; #pragma mark - Instance Methods - (IBAction)btnCancelTouched:(id)sender; @end