gpt4 book ai didi

iphone - 如何获取 NSDictionary 中的第一个元素?

转载 作者:IT老高 更新时间:2023-10-28 11:49:02 24 4
gpt4 key购买 nike

我有一个 NSDictionaries 数组。如何提取字典中的第一个元素?

   NSArray *messages = [[results objectForKey:@"messages"] valueForKey:@"message"];         
for (NSDictionary *message in messages)
{
STObject *mySTObject = [[STObject alloc] init];
mySTObject.stID = [message valueForKey:@"id"];
stID = mySTObject.stID;
}

最佳答案

NSDictionary 中没有“第一个”元素;它的成员没有保证的顺序。如果您只想要字典中的 一个 对象,但不关心它与哪个键关联,您可以这样做:

id val = nil;
NSArray *values = [yourDict allValues];

if ([values count] != 0)
val = [values objectAtIndex:0];

关于iphone - 如何获取 NSDictionary 中的第一个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2695030/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com