Objective-C 静态常量
1
2
3
|
|
最后,在Constants.m
中通过赋值定义常量:
1
2
3
|
|
内部常量:
定义在头文件的头部 test.h文件 #import <Foundation/Foundation.h> static const int safety=5; @interface test:NSObject{ }
1
2
3
|
|
最后,在Constants.m
中通过赋值定义常量:
1
2
3
|
|
内部常量:
定义在头文件的头部 test.h文件 #import <Foundation/Foundation.h> static const int safety=5; @interface test:NSObject{ }