This commit is contained in:
2025-11-18 20:53:47 +08:00
parent 254e65906a
commit 3dcc4932c3
109 changed files with 1432 additions and 84 deletions

View File

@@ -19,6 +19,13 @@
/// APP Groups
#define AppGroup @"group.com.loveKey.nyx"
/// 皮肤图标加载模式:
/// 0 = 使用本地 Assets 图片名key_icons 的 value 写成图片名,例如 "kb_q_melon"
/// 1 = 使用远程 URL 下载到 App Group 目录,再由键盘扩展从文件系统加载
#ifndef KB_SKIN_ICON_USE_REMOTE
#define KB_SKIN_ICON_USE_REMOTE 0
#endif
// 基础baseUrl
#ifndef KB_BASE_URL
@@ -84,4 +91,3 @@ static inline CGFloat KBFit(CGFloat designValue) {
#ifndef KBWeakSelf
#define KBWeakSelf __weak __typeof(self) weakSelf = self;
#endif