在 Objective-C 中创建公共静态常量
我需要在一个类中创建静态常量,可供导入该类的其他类使用。 我认为枚举将是最好的方法,因为我看到它在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于类型的使用方式。枚举可以是创建一些命名值的简单方法,但 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).