ios 公共静态 const 等效
C 风格版本
我正在尝试完成 public
static
const
我已经尝试过的
: ClassA.h
extern const int功能;
ClassA.m
#define THE_CONST 123
ClassB.b
#import ClassA.h
initWithFrame
功能
Xcode 不是通过运行时错误,而是通过架构 i386 的未定义符号的构建错误:“_THE_CONST”,引用自:...
如何我可以共享一个 extern
const
给另一个类使用吗?
I'm trying to accomplish a C style version of public
static
const
What I tried doing already:
ClassA.h
extern const int FEATURES;
ClassA.m
#define THE_CONST 123
ClassB.b
#import ClassA.h
initWithFrame
FEATURES
Xcode does not through a runtime error, but rather a build error of undefined symbols for architecture i386: "_THE_CONST", referenced from: ...
How can I share an extern
const
to for another class to use as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ClassA.h
extern const int FEATURES;
ClassA.m
const int FEATURES = <这里是您的 const 值>;
ClassA.h
extern const int FEATURES;
ClassA.m
const int FEATURES = <your const value here>;