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