ThingsAddFailViewController.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // ThingsAddFailViewController.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. @interface ThingsAddFailViewController : JDViewController
  10. #pragma mark - Properties
  11. @property (weak, nonatomic) NSDictionary *addableDevice;
  12. @property (weak, nonatomic) IBOutlet UIView *maskView;
  13. @property (weak, nonatomic) IBOutlet UIView *popView;
  14. @property (weak, nonatomic) IBOutlet CustomImageView *imgStep; // 스텝 이미지
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // 장치 타이틀
  16. @property (weak, nonatomic) IBOutlet CustomImageView *imgThingsFail; // 실패 이미지
  17. @property (weak, nonatomic) IBOutlet CustomImageView *imgThings; // 장치 이미지
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer; // 제조사 명
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnRetry; // 재시도
  21. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
  22. #pragma mark - Instance Methods
  23. - (IBAction)btnRetryTouched:(id)sender;
  24. - (IBAction)btnCancelTouched:(id)sender;
  25. @end