处理键盘不能拉起主app的问题
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
|
||||
// Universal Links 通用链接
|
||||
#ifndef KB_UL_BASE
|
||||
#define KB_UL_BASE @"https://your.domain/ul"
|
||||
#define KB_UL_BASE @"https://app.tknb.net/ul"
|
||||
#endif
|
||||
|
||||
#define KB_UL_LOGIN KB_UL_BASE @"/login"
|
||||
@@ -37,6 +37,14 @@
|
||||
#define KB_KEYBOARD_EXTENSION_BUNDLE_ID @"com.loveKey.nyx.CustomKeyboard"
|
||||
#endif
|
||||
|
||||
// --- 应用自定义 Scheme ---
|
||||
// 主 App 在 Info.plist 中注册的 URL Scheme,用于从键盘扩展唤起容器 App。
|
||||
// 注意:AppDelegate 中对 scheme 做了小写化比较(kbkeyboardappextension),iOS 对大小写不敏感;
|
||||
// 这里统一通过宏引用,避免出现与 App 端不一致的字符串。
|
||||
#ifndef KB_APP_SCHEME
|
||||
#define KB_APP_SCHEME @"kbkeyboardAppExtension"
|
||||
#endif
|
||||
|
||||
// --- 常用宏 ---
|
||||
// 弱引用 self(在 block 中避免循环引用):使用处直接写 KBWeakSelf;
|
||||
#ifndef KBWeakSelf
|
||||
|
||||
Reference in New Issue
Block a user