Objective-C - 类的静态常量
Posted liguangsunls
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Objective-C - 类的静态常量相关的知识,希望对你有一定的参考价值。
创建头文件(.h), 导出常量:
// Constants.h
FOUNDATION_EXPORT NSString *const MyFirstConstant;
FOUNDATION_EXPORT NSString *const MySecondConstant;
//etc.
(代码不用于C/C++混合编程时, 能够使用extern取代FOUNDATION_EXPORT.)
定义源文件(.m), 设置常量:
// Constants.m
NSString *const MyFirstConstant = @"FirstConstant";
NSString *const MySecondConstant = @"SecondConstant";
//etc.
使用类常量时, 须要引入头文件(.h).
以上是关于Objective-C - 类的静态常量的主要内容,如果未能解决你的问题,请参考以下文章