| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // ThingsDelValveCompleteViewController.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 ThingsGeneralDelCompleteViewController : JDViewController
- @property (weak, nonatomic) DeviceModel *delDevice;
- @property (assign, nonatomic) BOOL isSuccess;
- @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 CustomImageView *imgThingsSuccess; // 성공 이미지
- @property (weak, nonatomic) IBOutlet CustomImageView *imgThingsFail; // 실패 이미지
- @property (weak, nonatomic) IBOutlet CustomImageView *imgThings; // 장치 이미지
- @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer; // 제조사 명
- @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm; // 확인 버튼
- @property (weak, nonatomic) IBOutlet UIView *viewRetry; // 취소,재시도 버튼 뷰
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소 버튼
- @property (weak, nonatomic) IBOutlet CustomButton *btnRetry; // 재시도 버튼
- @end
|