37 lines
1.0 KiB
Objective-C
37 lines
1.0 KiB
Objective-C
//
|
|
// HaveHotCoolWenDuPicview.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 2017/6/15.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
//制冷制热温度选择 默认制热
|
|
@protocol HaveHotCoolWenDuPicviewDelegate <NSObject>
|
|
-(void)didSelectCoolOrHeat:(NSString *)hotCool;
|
|
|
|
@end
|
|
|
|
@interface HaveHotCoolWenDuPicview : UIView
|
|
@property(nonatomic,strong)UIButton*sureBtn
|
|
;
|
|
@property(nonatomic,strong)UIPickerView*pic;
|
|
@property(nonatomic,strong)UIImageView*picBackImg;
|
|
@property(nonatomic,strong)NSMutableArray*componentArray;
|
|
@property(nonatomic,strong)NSArray*picArr;
|
|
@property(nonatomic)NSInteger component;
|
|
@property(nonatomic)NSString* rowTitle;
|
|
@property(nonatomic)NSInteger row;
|
|
@property(nonatomic,copy)NSString*picViewResultString;
|
|
@property(nonatomic,copy)NSString*picString;
|
|
@property(nonatomic,strong) UIButton *cateSwich;
|
|
|
|
@property(nonatomic) BOOL isCool;
|
|
-(void)initCateBtnSate:(NSString*)hotCoolSate;
|
|
|
|
@property (nonatomic, assign) id<HaveHotCoolWenDuPicviewDelegate>
|
|
wenDuPicviewDelegate;
|
|
|
|
@end
|