YOUPAIRightCollectionView.h 522 B

12345678910111213141516171819
  1. //
  2. // YOUPAIRightCollectionView.h
  3. // MSYOUPAI
  4. //
  5. // Created by xiaohaoran on 2022/3/1.
  6. // Copyright © 2022 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILCUserShowModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef void (^DidSelectImageIndex)(NSInteger index);
  12. @interface YOUPAIRightCollectionView : UIView
  13. @property(nonatomic,copy)DidSelectImageIndex didSelectImageIndex;
  14. -(void)setScrollToItemAtIndex:(NSInteger)index;
  15. @property(nonatomic,strong)YOUPAILCUserShowModel *Model;
  16. @end
  17. NS_ASSUME_NONNULL_END