Files
keyboard/keyBoard/Class/Shop/V/KBShopHeadView.m
2025-11-13 15:34:56 +08:00

22 lines
345 B
Objective-C

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