// // HCFindNavBarView.h // hc // // Created by xiaoxi on 2018/1/19. // Copyright © 2018年 hc. All rights reserved. // #import @protocol YHFindNavBarViewDelegate; @interface HCFindNavBarView : 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