| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // ExternHeatPopupView.h
- // kneet2
- //
- // Created by Jason Lee on 11/24/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- #import "JDViewController.h"
- @class CustomCheckBox;
- @class CustomTextField;
- @interface ExternHeatPopupView : CustomAlertView
- //properties
- @property (weak, nonatomic) ItemModel *externHeatTrigger;
- @property (weak, nonatomic) NSMutableArray<ItemModel> *refConditions;
- @property (strong, nonatomic) IBOutletCollection(CustomCheckBox) NSArray *chkDays;
- @property (weak, nonatomic) IBOutlet CustomButton *btnBelow;// 이하 버튼
- @property (weak, nonatomic) IBOutlet CustomButton *btnOver; // 이상 버튼
- @property (weak, nonatomic) IBOutlet CustomButton *btnZeroDegree;// 영상 / 영하 선택
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCity;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblHeat;
- @property (weak, nonatomic) IBOutlet CustomButton *btnSelect; // 지역 선택 버튼
- @property (weak, nonatomic) IBOutlet CustomTextField *txtLocation; // 기준지역 선택 박스
- @property (weak, nonatomic) IBOutlet CustomButton *btnPlus; // 플러스버튼
- @property (weak, nonatomic) IBOutlet CustomTextField *tfTemper; // 온도입력
- //methods
- - (id)initFromNib;
- @end
|