线上所有马甲包模板,与《猎豆》同UI。域名zhuadd

SelectFiltrateView.h 620B

123456789101112131415161718192021222324252627
  1. //
  2. // SelectFiltrateView.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/2.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol SelectFiltrateViewDelegate <NSObject>
  10. - (void)makeSureActionWithFromValue:(NSString *)fromValue toValue:(NSString *)toValue;
  11. @end
  12. @interface SelectFiltrateView : UIView
  13. - (instancetype)initWithFrame:(CGRect)frame filtrateArr:(NSArray *)arr;
  14. @property (nonatomic, weak) id <SelectFiltrateViewDelegate> delegate;
  15. //确定
  16. @property (nonatomic, strong) UIButton *makeSureBtn;
  17. //取消
  18. @property (nonatomic, strong) UIButton *cancelBtn;
  19. @end