ThingsAddFailViewController.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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 CustomLabel *lblTitle; // 장치 타이틀
  15. @property (weak, nonatomic) IBOutlet CustomImageView *imgThingsFail; // 실패 이미지
  16. @property (weak, nonatomic) IBOutlet CustomImageView *imgThings; // 장치 이미지
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer; // 제조사 명
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnRetry; // 재시도
  20. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
  21. #pragma mark - Instance Methods
  22. - (IBAction)btnRetryTouched:(id)sender;
  23. - (IBAction)btnCancelTouched:(id)sender;
  24. @end