// // KBFindNavBarView.h // YouHuiProject // // Created by xiaoxi on 2018/1/19. // Copyright © 2018年 kuxuan. All rights reserved. // #import @protocol YHFindNavBarViewDelegate; @interface KBFindNavBarView : UICollectionReusableView @property (nonatomic, weak) id delegate; @property (nonatomic, strong) UILabel *leftLabel; @property (nonatomic, strong) UIButton *rightButton; @property (nonatomic, strong) UIButton *bottomButton; @end @protocol YHFindNavBarViewDelegate @optional - (void)yh_FinNavBarViewClickHelp; - (void)yh_FindNavBarViewClickSearch; @end