TemperaturePopupView.h 561 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // TemperaturePopupView.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 11/25/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. #import "JDViewController.h"
  11. @class CustomButton;
  12. @class CustomLabel;
  13. @interface TemperaturePickerView : UIPickerView {
  14. BOOL _changed;
  15. }
  16. @end
  17. @interface TemperaturePopupView : CustomAlertView
  18. //properties
  19. @property (weak, nonatomic) NSString *temperature;
  20. @property (weak, nonatomic) IBOutlet TemperaturePickerView *temperaturePicker;
  21. //methods
  22. - (id)initFromNib;
  23. @end