| 123456789101112131415161718192021222324252627282930 |
- //
- // ThingsDelValveStartViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 3. 23..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomImageView;
- @class CustomButton;
- @interface ThingsDelValveStartViewController : JDViewController
- @property (weak, nonatomic) IBOutlet UIView *maskView;
- @property (weak, nonatomic) IBOutlet UIView *popUpView;
- @property (weak, nonatomic) IBOutlet CustomImageView *imgStep; // 스텝 이미지
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // 장치 타이틀
- @property (weak, nonatomic) IBOutlet CustomLabel *lblComment; // 팝업 본문
- @property (weak, nonatomic) IBOutlet CustomLabel *lblElapsedTime; // 타이머
- @property (weak, nonatomic) IBOutlet CustomImageView *imgLoading; // 타이머 이미지
- @property (weak, nonatomic) IBOutlet CustomImageView *imgThings; // 장치 이미지
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소
- @end
|