// // YOUPAIMinePhotoCell.h // MSYOUPAI // // Created by admin on 2022/3/2. // Copyright © 2022 MS. All rights reserved. // #import #import "YOUPAIMineInfoBaseCell.h" #import "YOUPAIBubbleLabel.h" #import "YOUPAILCImageDeleteView.h" NS_ASSUME_NONNULL_BEGIN @class YOUPAIMinePhotoCollectionViewCell; @class YOUPAIMineInfoPhotoCell; @protocol YOUPAIMineInfoPhotoCellDelegate -(void)mineInfoPhotoCellhandle:(YOUPAIMineInfoPhotoCell*)cell indexpath:(NSIndexPath*)indexPath; @end /** 设置个人图片cell */ @interface YOUPAIMineInfoPhotoCell : YOUPAIMineInfoBaseCell @property (strong, nonatomic) NSMutableArray * youpaipimages; @property (nonatomic, weak) id delegate; @property (strong,nonatomic) UICollectionViewFlowLayout *flowLayout; @property (strong,nonatomic) UICollectionView *collectionView; @property (strong,nonatomic) UILabel *remarkLab; // 气泡 @property(strong, nonatomic) YOUPAIBubbleLabel*bubbleLab; @property(nonatomic,assign)CGPoint youpaiplastPressPoint; @property(nonatomic,strong)NSMutableArray *youpaipcellAttributesArray; @property(nonatomic,strong)YOUPAILCImageDeleteView* youpaipdeleteView; +(CGFloat)cellheight; @end /** 设置个人图片的CollectionView cell */ @interface YOUPAIMinePhotoCollectionViewCell : UICollectionViewCell @property(strong, nonatomic) UIImageView * youpaipImageView; @end NS_ASSUME_NONNULL_END