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
|