Files
keyboard/keyBoard/Class/Shop/V/KBShopHeadView.m

20 lines
312 B
Mathematica
Raw Normal View History

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