ThingsGeneralDelViewController.h 952 B

12345678910111213141516171819202122232425262728293031
  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 ThingsGeneralDelViewController : JDViewController
  13. @property (weak, nonatomic) DeviceModel *delDevice;
  14. @property (weak, nonatomic) IBOutlet UIView *maskView;
  15. @property (weak, nonatomic) IBOutlet UIView *popUpView;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // 장치 타이틀
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblComment; // 팝업 본문
  18. @property (weak, nonatomic) IBOutlet CustomImageView *imgThings; // 장치 이미지
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer; // 제조사 명
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소
  21. @property (weak, nonatomic) IBOutlet CustomButton *btnStart; // 시작
  22. @end