在哪里放置“常量”?在可可中

发布于 2024-10-01 00:33:28 字数 678 浏览 2 评论 0原文

我在我的 cocoa (touch) 应用程序中与 json api 进行通信。

作为回应,我得到这样的信息:

"wh": {
 "1": ["11.30 - 15.00"], 
 "3": ["11.30 - 15.00"], 
 "2": ["12.00 - 14.00", "17.30 - 23.00"], 
 "5": ["11.30 - 15.00"], 
 "4": ["11.30 - 15.00"]
}, 

键 0 到 6 反映了工作日(星期一 == 0,星期二 = 1,....)

为了映射它,我有一个 NSArray:

weekdays = [[NSArray alloc] initWithObjects:@"Montag",
       @"Dienstag",
       @"Mittwoch",
       @"Donnerstag",
       @"Freitag",
       @"Samstag",
       @"Sonntag", nil];

我需要在两个视图控制器中使用它 - 当前在viewWillAppear。 :(

所以我的问题:

  1. 我应该在哪里/何时设置这个工作日数组?
  2. 如何在视图控制器中访问它?
  3. 有什么建议吗?

I communicate with a json api in my cocoa (touch) app.

As a response I get something like this:

"wh": {
 "1": ["11.30 - 15.00"], 
 "3": ["11.30 - 15.00"], 
 "2": ["12.00 - 14.00", "17.30 - 23.00"], 
 "5": ["11.30 - 15.00"], 
 "4": ["11.30 - 15.00"]
}, 

Keys 0 to 6 reflect the weekdays (Monday == 0, Tuesday = 1, ....)

To map this I have a NSArray:

weekdays = [[NSArray alloc] initWithObjects:@"Montag",
       @"Dienstag",
       @"Mittwoch",
       @"Donnerstag",
       @"Freitag",
       @"Samstag",
       @"Sonntag", nil];

I need this in two viewcontrollers - currently set in the viewWillAppear. :(

So my question(s):

  1. Where/When should I set this weekdays array?
  2. How to access it in the viewcontrollers?
  3. Any suggestions?

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

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

发布评论

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

评论(4

演多会厌 2024-10-08 00:33:29

我在应用程序中处理常量的方式...

1) 创建一个 Common.h 文件,将其放入您的 Resources 目录中。

2)在那里定义你想要的所有常量。

#define STATE_INDEX [NSArray arrayWithObjects:@"AL", @"AK", @"AZ", ... nil]
#define NSDATEFORMATTER_WITH_TIME_FORMAT @"dd/MM/yyyy : HH:mm:ss"
#define PORTRAIT_KEYBOARD_HEIGHT 216

3) 确保...

#import "Common.h"

在您想要使用常量的代码文件中。

The way I handle constants in my apps...

1) Create a Common.h file, put it in your Resources directory.

2) Define all the constants you want in there.

#define STATE_INDEX [NSArray arrayWithObjects:@"AL", @"AK", @"AZ", ... nil]
#define NSDATEFORMATTER_WITH_TIME_FORMAT @"dd/MM/yyyy : HH:mm:ss"
#define PORTRAIT_KEYBOARD_HEIGHT 216

3) Make sure to...

#import "Common.h"

in the code files you want to use the constants in.

弥繁 2024-10-08 00:33:29

您可以依赖 .strings 文件:

[[NSBundle mainBundle] localizedStringForKey:key value:key table:@"Weekdays"]

You could rely in a .strings file:

[[NSBundle mainBundle] localizedStringForKey:key value:key table:@"Weekdays"]
雨落□心尘 2024-10-08 00:33:28

为什么不使用 NSDateFormatter 类?您可以使用它来获取任何语言的 wekk 名称的本地化日期。

Why don't you use the NSDateFormatter class? You can use it to get localized days of the wekk names for any language.

初相遇 2024-10-08 00:33:28

使用单例来存储此类信息,这是一个示例:

http ://getsetgames.com/2009/08/30/the-objective-c-singleton/

Use a singleton to store that kind of information, here is an example:

http://getsetgames.com/2009/08/30/the-objective-c-singleton/

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