线上所有马甲包模板,与《猎豆》同UI。域名zhuadd

HSQFindTopView.h 510B

12345678910111213141516171819202122
  1. //
  2. // HSQFindTopView.h
  3. // YouHuiProject
  4. //
  5. // Created by xiaoxi on 2018/1/19.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol YHFindTopViewDelegate;
  10. @interface HSQFindTopView : UICollectionReusableView
  11. @property (nonatomic, weak) id<YHFindTopViewDelegate> delegate;
  12. @property (nonatomic, strong) NSMutableArray *dataSource;
  13. @end
  14. @protocol YHFindTopViewDelegate <NSObject>
  15. @optional
  16. - (void)yh_FindTopViewDidSelectItemAtIndexPath:(NSIndexPath *)indexPath;
  17. @end