这听起来像是一个愚蠢的问题,但我无法在网上轻松找到任何解决方案。
如何在 .h 文件中声明一个 NSString?
我试过这个:
@property (nonatomic, retain) NSString *DATABASE_NAME;
但我得到一个错误:
Expected member name or ';' after declaration
这里有什么问题?
编辑
我的头文件:
@interface GlobalVariables : NSObject
@property BOOL MAP_SATELLITE_VIEW;
@property (nonatomic, retain) NSString *DATABASE_NAME;
+ (GlobalVariables*)sharedInstance;
@end
您显示的代码没有任何问题,因此您必须查看其上下文。一些想法:
#import
.h
文件的方式/位置。DATABASE_NAME
是否已在别处定义。@property (nonatomic, assign) NSInteger dummyInt;
,或者在该行上方添加此行会怎样?关于ios - 在 .h 文件中声明 NSString - objective-c ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49830067/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |