首页 > 代码库 > Objective-C 静态常量

Objective-C 静态常量

123
// Constants.hextern NSString * const MyOwnConstant;extern NSString * const YetAnotherConstant;

最后,在Constants.m中通过赋值定义常量:

123
// Constants.mNSString * const MyOwnConstant = @"myOwnConstant";NSString * const  YetAnotherConstant = @"yetAnotherConstant";

Objective-C 静态常量