20 lines
312 B
Objective-C
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
|