新UI马甲包

HCFindMiddleView.h 511B

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