0

可能重复:
接口类型不能静态分配?

这是我的代码,就像其他人一样:

TZNotifications.h
extern NSString *const TZNotificationKeywordAuthentication;

TZNotifications.m
NSString *const TZNotificationKeywordAuthentication = @"NOTIFICATION_KEYWORD_AUTHENTICATION";

但是我得到两个这样的代码错误:

在此处输入图像描述

4

2 回答 2

0

替换 'const' 和类型声明:

TZNotifications.h

extern const NSString *TZNotificationKeywordAuthentication;

TZNotifications.m

const NSString *TZNotificationKeywordAuthentication = @"NOTIFICATION_KEYWORD_AUTHENTICATION";
于 2012-10-01T07:37:55.950 回答
0

感谢你们。结果我愚蠢地在我的一个头文件的末尾添加了一个无意义的字符串,导致了这个奇怪的错误。对于那个很抱歉...

于 2012-10-01T07:53:47.323 回答