// // SelectFiltrateView.h // YouHuiProject // // Created by 小花 on 2018/5/2. // Copyright © 2018年 kuxuan. All rights reserved. // #import @protocol SelectFiltrateViewDelegate - (void)makeSureActionWithFromValue:(NSString *)fromValue toValue:(NSString *)toValue; @end @interface SelectFiltrateView : UIView - (instancetype)initWithFrame:(CGRect)frame filtrateArr:(NSArray *)arr; @property (nonatomic, weak) id delegate; //确定 @property (nonatomic, strong) UIButton *makeSureBtn; //取消 @property (nonatomic, strong) UIButton *cancelBtn; @end