Files
yinmeng-ios/xplan-ios/Main/Monents/View/Cell/XPMonentsPublishCollectionViewCell.h
2022-08-26 21:42:05 +08:00

29 lines
705 B
Objective-C

//
// XPMonentsPublishCollectionViewCell.h
// xplan-ios
//
// Created by 冯硕 on 2022/7/1.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPMonentsPublishCollectionViewCell;
@protocol XPMonentsPublishCollectionViewCellDelegate <NSObject>
- (void)XPMonentsPublishCollectionViewCell:(XPMonentsPublishCollectionViewCell *)view didDeleteItem:(UIImage *)image;
@end
@interface XPMonentsPublishCollectionViewCell : UICollectionViewCell
///设置图片
@property (nonatomic,strong) UIImage *image;
///是否展示删除
@property (nonatomic,assign) BOOL isShowDelete;
///代理
@property (nonatomic,weak) id<XPMonentsPublishCollectionViewCellDelegate> delegate;
@end
NS_ASSUME_NONNULL_END