Files
featherVoice/QXLive/Mine(音域)/View/个人主页/相册/QXImageCollectionViewCell.h
2025-08-08 10:49:36 +08:00

22 lines
546 B
Objective-C

//
// QXImageCollectionViewCell.h
// QXLive
//
// Created by 启星 on 2025/6/5.
//
#import <UIKit/UIKit.h>
#import "QXPhotoModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface QXImageCollectionViewCell : UICollectionViewCell
@property (nonatomic,strong)UIImageView *imageView;
@property (nonatomic,strong)UIView *selectedBgView;
@property (nonatomic,strong)UIButton *selectedBtn;
@property (nonatomic,strong)QXPhotoModel*model;
@property (nonatomic,assign)NSInteger index;
@property (nonatomic,assign)BOOL selectedState;
@end
NS_ASSUME_NONNULL_END