| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // ExternHeatPopupView.h
- // kneet
- //
- // Created by Jason Lee on 5/12/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- @class CustomRadioButton;
- @class SelectButton;
- @class ItemModel;
- @interface ExternHeatPopupView : CustomAlertView
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoOver;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoUnder;
- @property (weak, nonatomic) IBOutlet SelectButton *btnLocation;
- @property (weak, nonatomic) IBOutlet UIView *controlContainerView;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblHeat;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblUnit;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- @property (strong, nonatomic) ItemModel *condition;
- @property (strong, nonatomic) NSString *externHeat;
- @property (strong, nonatomic) NSString *externCondition;
- - (id)initFromNib;
- @end
|