23 lines
396 B
Objective-C
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
|