123456789101112131415161718192021222324 |
- //
- // YOUPAIBrowserPhotoCell.h
- // MSYOUPAI
- //
- // Created by xiaohaoran on 2022/3/7.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAIBrowserPhotoCell : UICollectionViewCell
- @property (nonatomic, strong) UIImageView *imageView;
- @property (nonatomic, strong) UIImageView *videoImageView;
- @property (nonatomic, strong) UIButton *deleteBtn;
- @property (nonatomic, strong) UILabel *gifLable;
- @property (nonatomic, assign) NSInteger row;
- @property (nonatomic, strong) id asset;
- - (UIView *)snapshotView;
- @end
- NS_ASSUME_NONNULL_END
|