可能重复:
接口类型不能静态分配?
这是我的代码,就像其他人一样:
TZNotifications.h
extern NSString *const TZNotificationKeywordAuthentication;
TZNotifications.m
NSString *const TZNotificationKeywordAuthentication = @"NOTIFICATION_KEYWORD_AUTHENTICATION";
但是我得到两个这样的代码错误:
可能重复:
接口类型不能静态分配?
这是我的代码,就像其他人一样:
TZNotifications.h
extern NSString *const TZNotificationKeywordAuthentication;
TZNotifications.m
NSString *const TZNotificationKeywordAuthentication = @"NOTIFICATION_KEYWORD_AUTHENTICATION";
但是我得到两个这样的代码错误:
替换 'const' 和类型声明:
TZNotifications.h
extern const NSString *TZNotificationKeywordAuthentication;
TZNotifications.m
const NSString *TZNotificationKeywordAuthentication = @"NOTIFICATION_KEYWORD_AUTHENTICATION";
感谢你们。结果我愚蠢地在我的一个头文件的末尾添加了一个无意义的字符串,导致了这个奇怪的错误。对于那个很抱歉...