Files
peko-ios/YuMi/Modules/YMNewHome/View/Cell/XPBlankCollectionViewCell.m

21 lines
367 B
Objective-C

//
// XPBlankCollectionViewCell.m
// YuMi
//
// Created by Linus on 2024/12/19.
//
#import "XPBlankCollectionViewCell.h"
@implementation XPBlankCollectionViewCell
- (instancetype)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {
self.contentView.backgroundColor = [UIColor clearColor];
}
return self;
}
@end