Files
OrderScheduling/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseCollectionView/DDBaseCollectionView.m
T
2023-08-18 17:28:57 +08:00

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