2025-10-27 19:42:27 +08:00
|
|
|
//
|
|
|
|
|
// 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
|
2025-10-28 10:18:10 +08:00
|
|
|
#define SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height
|
2025-10-27 19:42:27 +08:00
|
|
|
#define imageNamed(s) [UIImage imageNamed:s]
|
|
|
|
|
|
2025-10-27 21:55:05 +08:00
|
|
|
#import "Masonry.h"
|
|
|
|
|
|
|
|
|
|
|
2025-10-27 19:42:27 +08:00
|
|
|
#endif /* PrefixHeader_pch */
|