ExternHeatPopupView.h 923 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // ExternHeatPopupView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/12/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @class CustomRadioButton;
  11. @class SelectButton;
  12. @class ItemModel;
  13. @interface ExternHeatPopupView : CustomAlertView
  14. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoOver;
  15. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoUnder;
  16. @property (weak, nonatomic) IBOutlet SelectButton *btnLocation;
  17. @property (weak, nonatomic) IBOutlet UIView *controlContainerView;
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblHeat;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblUnit;
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  21. @property (strong, nonatomic) ItemModel *condition;
  22. @property (strong, nonatomic) NSString *externHeat;
  23. @property (strong, nonatomic) NSString *externCondition;
  24. - (id)initFromNib;
  25. @end