31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
//
|
||
// PrefixHeader.pch
|
||
// CustomKeyboard
|
||
//
|
||
// Created by Mac on 2025/10/27.
|
||
//
|
||
|
||
#ifndef PrefixHeader_pch
|
||
#define PrefixHeader_pch
|
||
|
||
// Include any system framework and library headers here that should be included in all compilation units.
|
||
// You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.
|
||
|
||
#define SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width
|
||
#define SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height
|
||
#define imageNamed(s) [UIImage imageNamed:s]
|
||
|
||
#import "Masonry.h"
|
||
|
||
// 网络基地址(Mock环境)
|
||
#define KB_BASE_URL @"https://m1.apifoxmock.com/m1/5438099-5113192-default/"
|
||
|
||
// 通用链接(Universal Links)统一配置
|
||
// 配置好 AASA 与 Associated Domains 后,只需修改这里即可切换域名/path。
|
||
#define KB_UL_BASE @"https://your.domain/ul" // 替换为你的真实域名与前缀路径
|
||
#define KB_UL_LOGIN KB_UL_BASE @"/login"
|
||
#define KB_UL_SETTINGS KB_UL_BASE @"/settings"
|
||
|
||
|
||
#endif /* PrefixHeader_pch */
|