Files
keyboard/keyBoard/Class/Shop/V/KBShopHeadView.m
2025-11-13 14:11:44 +08:00

20 lines
312 B
Objective-C

//
// KBShopHeadView.m
// keyBoard
//
// Created by Mac on 2025/11/9.
//
#import "KBShopHeadView.h"
@implementation KBShopHeadView
- (instancetype)initWithFrame:(CGRect)frame{
if (self = [super initWithFrame:frame]) {
self.backgroundColor = [UIColor clearColor];
}
return self;
}
@end