// // KBFindTopView.h // YouHuiProject // // Created by xiaoxi on 2018/1/19. // Copyright © 2018年 kuxuan. All rights reserved. // #import @protocol YHFindTopViewDelegate; @interface KBFindTopView : UICollectionReusableView @property (nonatomic, weak) id delegate; @property (nonatomic, strong) NSMutableArray *dataSource; @end @protocol YHFindTopViewDelegate @optional - (void)yh_FindTopViewDidSelectItemAtIndexPath:(NSIndexPath *)indexPath; @end