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