| 123456789101112131415161718192021222324252627282930313233 |
- //
- // TemperaturePopupView.h
- // kneet2
- //
- // Created by Jason Lee on 11/25/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- #import "JDViewController.h"
- @class CustomButton;
- @class CustomLabel;
- @interface TemperaturePickerView : UIPickerView {
- BOOL _changed;
- }
- @end
- @interface TemperaturePopupView : CustomAlertView
- //properties
- @property (weak, nonatomic) NSString *temperature;
- @property (weak, nonatomic) IBOutlet TemperaturePickerView *temperaturePicker;
- //methods
- - (id)initFromNib;
- @end
|