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