2025-10-27 19:42:27 +08:00
|
|
|
//
|
|
|
|
|
// KBToolBar.m
|
|
|
|
|
// CustomKeyboard
|
|
|
|
|
//
|
|
|
|
|
// Created by Mac on 2025/10/27.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import "KBToolBar.h"
|
|
|
|
|
|
|
|
|
|
@implementation KBToolBar
|
|
|
|
|
|
2025-10-27 21:11:28 +08:00
|
|
|
- (instancetype)initWithFrame:(CGRect)frame{
|
|
|
|
|
if (self = [super initWithFrame:frame]) {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
return self;
|
2025-10-27 19:42:27 +08:00
|
|
|
}
|
2025-10-27 21:11:28 +08:00
|
|
|
|
|
|
|
|
|
2025-10-27 19:42:27 +08:00
|
|
|
|
|
|
|
|
@end
|