gpt4 book ai didi

ios public static const 等价物

转载 作者:可可西里 更新时间:2023-11-01 06:21:11 25 4
gpt4 key购买 nike

我正在尝试完成 public static const

的 C 风格版本

我已经尝试过的事情:

A类.h

  • extern const int 功能;

A类.m

  • #define THE_CONST 123

B类.b

  • #import ClassA.h
  • initWithFrame
    • 特点

Xcode 不是通过运行时错误,而是通过构建错误 undefined symbols for architecture i386: "_THE_CONST", referenced from: ...

我如何共享一个 extern const 给另一个类使用?

最佳答案

A类.h

  • extern const int FEATURES;

A类.m

  • const int FEATURES = <your const value here>;

关于ios public static const 等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9021436/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com