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