ExternHeatPopupView.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // ExternHeatPopupView.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 11/24/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. #import "JDViewController.h"
  11. @class CustomCheckBox;
  12. @class CustomTextField;
  13. @interface ExternHeatPopupView : CustomAlertView
  14. //properties
  15. @property (weak, nonatomic) ItemModel *externHeatTrigger;
  16. @property (weak, nonatomic) NSMutableArray<ItemModel> *refConditions;
  17. @property (strong, nonatomic) IBOutletCollection(CustomCheckBox) NSArray *chkDays;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnBelow;// 이하 버튼
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnOver; // 이상 버튼
  20. @property (weak, nonatomic) IBOutlet CustomButton *btnZeroDegree;// 영상 / 영하 선택
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblCity;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblHeat;
  23. @property (weak, nonatomic) IBOutlet CustomButton *btnSelect; // 지역 선택 버튼
  24. @property (weak, nonatomic) IBOutlet CustomTextField *txtLocation; // 기준지역 선택 박스
  25. @property (weak, nonatomic) IBOutlet CustomButton *btnPlus; // 플러스버튼
  26. @property (weak, nonatomic) IBOutlet CustomTextField *tfTemper; // 온도입력
  27. //methods
  28. - (id)initFromNib;
  29. @end