Files
keyboard/keyBoard/Class/Home/V/HomeHeadView.m

20 lines
306 B
Mathematica
Raw Normal View History

2025-11-06 13:18:27 +08:00
//
// HomeHeadView.m
// keyBoard
//
// Created by Mac on 2025/11/6.
//
#import "HomeHeadView.h"
@implementation HomeHeadView
2025-11-06 14:02:22 +08:00
- (instancetype)initWithFrame:(CGRect)frame{
if (self = [super initWithFrame:frame]) {
2025-11-06 21:38:58 +08:00
self.backgroundColor = [UIColor clearColor];
2025-11-06 14:02:22 +08:00
}
return self;
2025-11-06 13:18:27 +08:00
}
@end