在 NSDictionary 中获取值
Posted
技术标签:
【中文标题】在 NSDictionary 中获取值【英文标题】:get value in NSDictionary 【发布时间】:2011-08-11 09:58:26 【问题描述】:我想从NSDictionary
获得价值。我想根据Code键控制“Code”键,我会得到基准值。当我尝试不同的方法时,我收到错误消息。
错误信息
2011-08-11 12:45:21.549 AOK[6312:207] -[__NSArrayM getObjects:andKeys:]: 无法识别的选择器发送到实例 0x5e138b0 2011-08-11 12:45:21.550 AOK[6312:207] * 终止应用程序由于 未捕获的异常 'NSInvalidArgumentException',原因:'-[__NSArrayM getObjects:andKeys:]:发送到实例的无法识别的选择器 0x5e138b0' * 首次抛出时调用堆栈:
NSDictionary
(
Omschrijving = "ADDD";
Ophaaldata =
Datum = (
"2011-07-04",
"2011-07-11",
"2011-07-18",
"2011-07-25"
);
;
,
Omschrijving = "BBBB";
Ophaaldata =
Datum = (
"2011-07-05",
"2011-07-12",
"2011-07-19",
"2011-07-26"
);
;
,
Omschrijving = "KKKK";
Ophaaldata =
Datum = (
"2011-07-07",
"2011-07-14",
"2011-07-21",
"2011-07-28"
);
;
,
Omschrijving = "LLLLL";
Ophaaldata =
Datum = (
"2011-07-01",
"2011-07-08",
"2011-07-15",
"2011-07-22",
"2011-07-29"
);
;
,
Omschrijving = "MMMMM";
Ophaaldata =
Datum = (
"2011-07-01",
"2011-07-15",
"2011-07-29"
);
;
,
Code = POP;
Omschrijving = "FFFF";
Ophaaldata =
Datum = "2011-07-12";
;
,
Code = 00;
Omschrijving = "SSSS";
Ophaaldata =
Datum = (
"2011-07-14",
"2011-07-27"
);
;
,
Code = 01;
Omschrijving = "CCCCC";
Ophaaldata =
Datum = (
"2011-07-06",
"2011-07-20"
);
;
)
【问题讨论】:
【参考方案1】:您显示的是一个 NSDictionaries 的 NSArray,每个都包含一个带有描述 (Omschrijving) 的 NSString 和一个带有一个键 (Datum) 的 NSDictionary (Ophaaldata),它是一个日期数组。如果您将Objects:andKeys:
发送到 NSArray,它将不起作用。
这些是您如何获得单个项目的几个示例:
NSArray *dicts = ...; // wherever you get the array
NSDictionary *mijnDict = [dicts objectAtIndex: n];
NSString *omschrijving = [mijnDict objectForKey: @"Omschrijving"];
NSDictionary *ophaaldata = [mijnDict objectForkey: @"Ophaaldata"];
NSArray *datum = [ophaaldata objectForkey: @"Datum"];
NSString *eersteDatum = [datum objectAtIndex: 0];
这些只是您如何处理这些项目的示例。但这是您的输出显示的结构。无论如何,其他任何东西都是无用的,因为字典只能包含每个键一次。我对代码进行了一些格式化,以便您可以更好地看到结构。
【讨论】:
【参考方案2】:在响应期间记住行的值
.......... indicates dictionary.
(............) indicates array.
Dictionary always have key with it like somename = "value in it", .......
Array has value seperated by comma like a , b , c .....
Now it is possible it may have array into dictionary like somekey = ( a,b,c) and vice versa
【讨论】:
【参考方案3】:reason: '-[__NSArrayM getObjects:andKeys:]:
你确定你有NSDictionary
而不是NSArray
吗?
【讨论】:
是的,我使用 NSDictionary。我一步一步得到这个值以上是关于在 NSDictionary 中获取值的主要内容,如果未能解决你的问题,请参考以下文章
如何从 NSDictionary 中的 NSDictionaries 获取所有值? [复制]
从 NSDictionary 获取包含 NSNumber 布尔值的键列表,其中值为 @YES