1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // YOUPAIMinePhotoCell.h
- // MSYOUPAI
- //
- // Created by admin on 2022/3/2.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAIMineInfoBaseCell.h"
- #import "YOUPAIBubbleLabel.h"
- #import "YOUPAILCImageDeleteView.h"
- NS_ASSUME_NONNULL_BEGIN
- @class YOUPAIMinePhotoCollectionViewCell;
- @class YOUPAIMineInfoPhotoCell;
- @protocol YOUPAIMineInfoPhotoCellDelegate <NSObject>
- -(void)mineInfoPhotoCellhandle:(YOUPAIMineInfoPhotoCell*)cell indexpath:(NSIndexPath*)indexPath;
- @end
- /**
- 设置个人图片cell
- */
- @interface YOUPAIMineInfoPhotoCell : YOUPAIMineInfoBaseCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
- @property (strong, nonatomic) NSMutableArray * youpaipimages;
- @property (nonatomic, weak) id<YOUPAIMineInfoPhotoCellDelegate> 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
|