ThingsAddInitFailViewController.h 910 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ThingsAddInitFailViewController.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 3. 21..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomImageView;
  10. @class CustomButton;
  11. @class CustomLabel;
  12. @interface ThingsAddInitFailViewController : JDViewController
  13. @property (weak, nonatomic) IBOutlet UIView *maskView;
  14. @property (weak, nonatomic) IBOutlet UIView *popUpView;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // 장치 타이틀
  16. @property (weak, nonatomic) IBOutlet CustomImageView *imgThingsFail; // 실패 이미지
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer; // 제조사 명
  18. @property (weak, nonatomic) IBOutlet CustomImageView *imgThings; // 장치 이미지
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnRetry; // 다음
  21. @end