ios 公共静态 const 等效

发布于 2024-12-29 01:57:10 字数 524 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如若梦似彩虹 2025-01-05 01:57:10

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>;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文