访问超类常量
在我的通用应用程序的主 AppDelegate 类中,我定义了一个常量:
#define kNumerOfPages 2
在 AppDelegate_iPhone 类和 AppDelegate_iPad 类中,我可以像普通常量一样访问该常量。示例:
switch (i) {
case ([super kNumerOfPages]):
{
NSLog(@"FinalPage");
break;
}
}
我可以将其作为常量访问吗?
In my universal app in main AppDelegate class I define a constant:
#define kNumerOfPages 2
In AppDelegate_iPhone class and AppDelegate_iPad class I would have access to this constant like normal constant. Example:
switch (i) {
case ([super kNumerOfPages]):
{
NSLog(@"FinalPage");
break;
}
}
Can I get access to it as a constant?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
#define
是一个预处理器指令,它显示用哪些值替换哪些标记。您不能在运行时通过对象访问它。您需要做的就是将适当的头文件包含到您想要使用该常量的文件中。然后只需执行简单的操作#define
is a preprocessor directive which shows what tokens to replace with what values. You don't access it through objects at runtime. All you need to do is to include appropriate header file to the file you want to use that constant in. then just do the simple