ifish/Ifish/controllers/HotBar/Views/IFishWaterChangeView.h

26 lines
825 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 andT:(NSString*)t andWarnCode:(NSString*)code;
-(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