19 lines
404 B
Objective-C
19 lines
404 B
Objective-C
//
|
|
// DDBaseCollectionView.m
|
|
// DDBasicControlsKit_Private
|
|
// Created by DDIsFriend on 2023/2/10.
|
|
|
|
|
|
#import "DDBaseCollectionView.h"
|
|
|
|
@implementation DDBaseCollectionView
|
|
- (instancetype)initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout{
|
|
self = [super initWithFrame:frame collectionViewLayout:layout];
|
|
if (self) {
|
|
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|