口袋优选

KBFindNavBarView.h 622B

12345678910111213141516171819202122232425
  1. //
  2. // KBFindNavBarView.h
  3. // YouHuiProject
  4. //
  5. // Created by xiaoxi on 2018/1/19.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol YHFindNavBarViewDelegate;
  10. @interface KBFindNavBarView : UICollectionReusableView
  11. @property (nonatomic, weak) id<YHFindNavBarViewDelegate> delegate;
  12. @property (nonatomic, strong) UILabel *leftLabel;
  13. @property (nonatomic, strong) UIButton *rightButton;
  14. @property (nonatomic, strong) UIButton *bottomButton;
  15. @end
  16. @protocol YHFindNavBarViewDelegate <NSObject>
  17. @optional
  18. - (void)yh_FinNavBarViewClickHelp;
  19. - (void)yh_FindNavBarViewClickSearch;
  20. @end