This commit is contained in:
2025-11-19 14:54:45 +08:00
parent 3dcc4932c3
commit 37e131eb09
104 changed files with 881 additions and 59 deletions

View File

@@ -53,7 +53,7 @@
// - hidden_keys identifier
// - key_icons
// * KB_SKIN_ICON_USE_REMOTE==0 value Assets "kb_space_melon"
// * KB_SKIN_ICON_USE_REMOTE==1 value URL "https://.../icons/space.png"
// * KB_SKIN_ICON_USE_REMOTE==1 value Zip "key_space" Skins/<skinId>/icons/key_space.png
self.skins = @[
@{
@"id": @"melon",
@@ -74,7 +74,7 @@
@"space"
],
// Assets
// URL
// Zip Zip "key_space"
@"key_icons": @{
//
// *_lower / *_upper

View File

@@ -31,7 +31,7 @@
[header addSubview:self.textView];
//
self.tableView = [[BaseTableView alloc] initWithFrame:CGRectMake(0, 60, KB_SCREEN_WIDTH, KB_SCREEN_HEIGHT - 60) style:UITableViewStyleInsetGrouped];
self.tableView = [[BaseTableView alloc] initWithFrame:CGRectMake(0, KB_NAV_TOTAL_HEIGHT, KB_SCREEN_WIDTH, KB_SCREEN_HEIGHT - KB_NAV_TOTAL_HEIGHT) style:UITableViewStyleInsetGrouped];
self.tableView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
self.tableView.delegate = self;
self.tableView.dataSource = self;