如何在 Objective C 中创建 ConstantList 类
如何在应用程序的 Objective C 中创建一个 ConstantList 类,所有使用常量的类都可以访问该类。
就像我们在 Actionscript 中所做的那样:
public class ConstantList
{
public static const EVENT_CHANGE:String = "event_change";
}
或者处理应用程序常量的最佳方法是什么。
问候 兰詹
How to make a ConstantList class in Objective C of an application which could be accessible to all the classes who are using constants.
like in Actionscript we do:
public class ConstantList
{
public static const EVENT_CHANGE:String = "event_change";
}
Or what is the best approach to handle application constant.
Regards
Ranjan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用全局常量,如下所示:
现在将
MyConstants.h
标头包含到您的实现文件中,您可以在其中使用 EVENT_CHANGE 常量字符串You can use global constants, like the following:
Now include
MyConstants.h
header to your implementation file and you can use EVENT_CHANGE constant string in it我推荐弗拉基米尔的方法。
只是为了完整性:您可以将其作为一个类来执行,如下所示:
您可以访问如下值:
I would recommend Vladimir's approach.
Just for completeness: You can do it as a class like this:
You access the value like: