12345678910111213141516171819 |
- //
- // YOUPAIRightCollectionView.h
- // MSYOUPAI
- //
- // Created by xiaohaoran on 2022/3/1.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILCUserShowModel.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void (^DidSelectImageIndex)(NSInteger index);
- @interface YOUPAIRightCollectionView : UIView
- @property(nonatomic,copy)DidSelectImageIndex didSelectImageIndex;
- -(void)setScrollToItemAtIndex:(NSInteger)index;
- @property(nonatomic,strong)YOUPAILCUserShowModel *Model;
- @end
- NS_ASSUME_NONNULL_END
|