ExternHeatPopupView.h 860 B

1234567891011121314151617181920212223242526272829303132333435
  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. @interface ExternHeatPopupView : CustomAlertView
  13. //properties
  14. @property (weak, nonatomic) ItemModel *externHeatTrigger;
  15. @property (weak, nonatomic) NSMutableArray<ItemModel> *refConditions;
  16. @property (strong, nonatomic) IBOutletCollection(CustomCheckBox) NSArray *chkDays;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnHot;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnCold;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblCity;
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblHeat;
  21. //methods
  22. - (id)initFromNib;
  23. - (IBAction)btnHotTouched:(id)sender;
  24. - (IBAction)btnColdTouched:(id)sender;
  25. @end