全局常量
2019-02-28 本文已影响0人
Crassus
定义方式
> 1.宏 (缺点编译器不知道是常量)
#define MAXSIZE CGSizeMake(320, 480)
> 2. typedef
typedef CGSize MySizeType;
> 3.类内部使用
static CGSize const MAXSIZE = {320, 480};
> 4.全局
在.h中声明:extern CGSize const MAXSIZE;
在.m中初始化:CGSize const MAXSIZE = {320,480};