最佳答案
在我的Objective-C项目中,我经常使用全局常量文件来存储NSUserDefaults
的通知名称和键等内容。它看起来是这样的:
@interface GlobalConstants : NSObject
extern NSString *someNotification;
@end
@implementation GlobalConstants
NSString *someNotification = @"aaaaNotification";
@end
我如何在Swift中做完全相同的事情?