ThingsAddIncludeViewController.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // ThingsAddIncludeViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 11/13/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class DeviceModel;
  10. @class CustomLabel;
  11. @class CustomButton;
  12. @interface ThingsAddIncludeViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) NSDictionary *addableDevice;
  15. @property (weak, nonatomic) DeviceModel *removableDevice;
  16. @property (weak, nonatomic) IBOutlet UIView *maskView;
  17. @property (weak, nonatomic) IBOutlet UIView *popView;
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblElapsedTime; // 타이머
  20. @property (weak, nonatomic) IBOutlet CustomImageView *imgStep; // 스텝 이미지
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // 장치 타이틀
  22. @property (weak, nonatomic) IBOutlet CustomImageView *imgThings; // 장치 이미지
  23. @property (weak, nonatomic) IBOutlet CustomImageView *imgLoading; // 타이머 이미지
  24. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소
  25. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
  26. #pragma mark - Instance Methods
  27. - (IBAction)btnCancelTouched:(id)sender;
  28. @end