在 Objective-C 中创建公共静态常量

发布于 2024-08-10 09:53:16 字数 70 浏览 3 评论 0原文

我需要在一个类中创建静态常量,可供导入该类的其他类使用。 我认为枚举将是最好的方法,因为我看到它在 Cocoa 类中经常使用。

I need to create static constants in a class that can be used by other classes that import that class.
I'm assuming that enum would be the best way to go since I have seen it been used quite often through out Cocoa classes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

眼眸 2024-08-17 09:53:16

这取决于类型的使用方式。枚举可以是创建一些命名值的简单方法,但 NSString 常量可以更好地与 Cocoa 的其余部分配合(例如,这就是 NSAttributedString 的所有属性键的表示方式,因为它们应该存储在字典中)。

It depends on how the type is going to be used. An enum can be a simple way to create some named values, but NSString constants can mesh better with the rest of Cocoa (for instance, this is how all the attribute keys for NSAttributedString are represented because they're meant to be stored in a dictionary).

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