// Const.h
#import
extern NSString *const NOTIRY_NAME;
@interface Const : NSObject
@end
// Const.m
#import "Const.h"
NSString *const NOTIRY_NAME = @"NOTIRY_NAME";
@implementation Const
@end
注:
extern声明也可以写在@interface 中,但是参考苹果的API没有这样做
// Macro.h
#ifndef Macro_h
#define Macro_h
#define NOTIRY_NAME @"NOTIRY_NAME"
#endif /* Macro_h */