34 lines
971 B
Objective-C
34 lines
971 B
Objective-C
//
|
|
// IFishWaterChangeView.h
|
|
// Ifish
|
|
//
|
|
// Created by 罗艺 on 2018/8/24.
|
|
// Copyright © 2018年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "IfishHotBarVo.h"
|
|
@protocol ChangeWaterDelegate <NSObject>
|
|
@optional
|
|
-(void)didSelectRow1:(NSString*)v andRow2:(NSString*)v2;
|
|
-(void)submitText:(NSString*)w andh:(NSString*)h andV:(NSString*)v;
|
|
//设置预警温度
|
|
-(void)didSelectTeamptrue:(NSString*)up andDown:(NSString*)down andWarnCode:(NSString*)code;
|
|
//设置加热温度
|
|
-(void)didChangeTemperature:(NSString*)temp;
|
|
//设置换水周期
|
|
-(void)didSelectRemindTime:(NSString*)time;
|
|
-(void)clickWormCode:(NSString*)code;
|
|
@end
|
|
|
|
/**
|
|
设置水温和设置预警温度分开显示
|
|
*/
|
|
@interface IFishWaterChangeView : UIView
|
|
@property (weak, nonatomic) IBOutlet UIPickerView *picker;
|
|
@property(nonatomic,weak)id<ChangeWaterDelegate> myDelegate;
|
|
@property(nonatomic,assign)NSInteger viewType;
|
|
@property(nonatomic,strong)IfishHotBarVo*hotVo;
|
|
|
|
@end
|