ThingsDelValveViewController.h 896 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // ThingsDelValveViewController.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 ThingsDelValveViewController : 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 CustomLabel *lblComment; // 팝업 본문
  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 *btnStart; // 시작
  21. @end