cdts/xdts-ios 3/TreeHole/Code/Features/Profile/View/ProfilePhotoCell.h
2023-07-27 09:20:00 +08:00

23 lines
396 B
Objective-C

//
// ProfilePhotoCell.h
// TreeHole
//
// Created by 谢培艺 on 2022/6/3.
//
#import <UIKit/UIKit.h>
#import "ProfilePhoto.h"
NS_ASSUME_NONNULL_BEGIN
UIKIT_EXTERN NSString * const ProfilePhotoCellID;
@interface ProfilePhotoCell : UICollectionViewCell
@property (nonatomic, strong) PYImageView *imageView;
@property (nonatomic, strong) ProfilePhoto *photo;
@end
NS_ASSUME_NONNULL_END