在标题(.h文件)中:
@interface MyClass : NSObject +(int)val; @end
在实现(.m文件)中:
static int val = 123; @implementation MyClass +(int)val {return val;} @end
用法:
if ([MyClass val] > 100) ...