Files
keyboard/keyBoard/Class/Home/V/HomeHeadView.m
2025-11-06 14:02:22 +08:00

20 lines
305 B
Objective-C

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