《省钱达人》与《猎豆优选》UI相同版。域名tbk

DRScrollSearchView.h 647B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // DRScrollSearchView.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/1/16.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSUInteger, SearchScrollButtonStyle) {
  10. SearchScrollButtonWhite,
  11. SearchScrollButtonGray,
  12. };
  13. @protocol YHScrollSearchDelegate <NSObject>
  14. @optional
  15. -(void)clickTitleButton:(UIButton *)button;
  16. @end
  17. @interface DRScrollSearchView : UIView
  18. - (instancetype)initWithFrame:(CGRect)frame andTitles:(NSArray *)titles;
  19. @property (nonatomic, weak) id <YHScrollSearchDelegate> delegate;
  20. - (void)destory;
  21. - (void)setButtonStyle:(SearchScrollButtonStyle)style;
  22. @end