DaylightPopupView.h 807 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // DaylightPopupView.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 DaylightPopupView : CustomAlertView
  13. //properties
  14. @property (weak, nonatomic) ItemModel *daylightTrigger;
  15. @property (weak, nonatomic) NSMutableArray<ItemModel> *refConditions;
  16. @property (strong, nonatomic) IBOutletCollection(CustomCheckBox) NSArray *chkDays;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnSunRise;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnSunSet;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblCity;
  20. //methods
  21. - (id)initFromNib;
  22. - (IBAction)btnSunRiseTouched:(id)sender;
  23. - (IBAction)btnSunSetTouched:(id)sender;
  24. @end