ThingsDelPlugCompleteViewController.h 941 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ThingsDelPlugCompleteViewController.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 CustomLabel;
  10. @class CustomImageView;
  11. @class CustomButton;
  12. @interface ThingsDelPlugCompleteViewController : 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 *imgThingsSuccess; // 성공 이미지
  17. @property (weak, nonatomic) IBOutlet CustomImageView *imgThingsFail; // 실패 이미지
  18. @property (weak, nonatomic) IBOutlet CustomImageView *imgThings; // 장치 이미지
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer; // 제조사 명
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm; // 확인
  21. @end