| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // ThingsAddFailViewController.h
- // kneet2
- //
- // Created by Jason Lee on 11/13/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @interface ThingsAddFailViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) NSDictionary *addableDevice;
- @property (weak, nonatomic) IBOutlet UIView *maskView;
- @property (weak, nonatomic) IBOutlet UIView *popView;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; // 장치 타이틀
- @property (weak, nonatomic) IBOutlet CustomImageView *imgThingsFail; // 실패 이미지
- @property (weak, nonatomic) IBOutlet CustomImageView *imgThings; // 장치 이미지
- @property (weak, nonatomic) IBOutlet CustomLabel *lblManufacturer; // 제조사 명
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; // 취소
- @property (weak, nonatomic) IBOutlet CustomButton *btnRetry; // 재시도
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
- #pragma mark - Instance Methods
- - (IBAction)btnRetryTouched:(id)sender;
- - (IBAction)btnCancelTouched:(id)sender;
- @end
|