21 lines
316 B
Objective-C
21 lines
316 B
Objective-C
//
|
|
// XPMineAlbumTableViewCell.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/6/24.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineAlbumTableViewCell : UITableViewCell
|
|
|
|
@property (nonatomic, copy) NSArray *albumDataSource;
|
|
|
|
+ (CGFloat)cellHeight:(NSInteger)numOfPhotos;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|