定义项目全局变量可用宏或const配合Pch文件简单实现,不过由于宏是在编译时进行替换,对于一些并不需要重复替换的变量,可以选择使用const进行定义:
1. 新建文件存放变量:
.h文件(使用extern或UIKIT_EXTERN修饰变量, 避免头文件重复引用):
#import <Foundation/Foundation.h>
extern NSString * const CHAppKey; extern NSString * const CHNotification;
.m文件:
#import "Const.h" NSString * const CHAppKey = @"appKey"; NSString * const CHNotification = @"CHNotification";
2. 导入Pch文件内:
#ifdef __OBJC__ #import "Const.h" #endif