1234567891011121314151617181920 |
- //
- // YOUPAIRightCollectionContentCell.h
- // MSYOUPAI
- //
- // Created by xiaohaoran on 2022/3/1.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAIRightCollectionContentCell : UICollectionViewCell
- @property (strong, nonatomic) UIImageView *youpaipiconImageView;
- /* 按钮 */
- @property (strong, nonatomic) UIImageView *youpaipplayImageView;
- @property(nonatomic,assign)BOOL cycleShow;//选中的外圈是否显示
- @end
- NS_ASSUME_NONNULL_END
|