gpt4 book ai didi

objective-c - 从 NSMutableArray 检索 NSDictionary

转载 作者:行者123 更新时间:2023-11-28 20:39:09 26 4
gpt4 key购买 nike

我正在尝试将 NSDictionary 放入 NSArray 中。我的目标是数组中的每个对象都是一个具有两个键和两个对象的字典。因此,字典的键将被称为“TITLE”和“AUTHOR”,每个键都有一个值,整个内容将存储在一个 NSMutableArray 对象中。

这是我的代码(dataSource 是一个包含标题列表的数组,author 是一个包含相应作者列表的数组,searchedData 是我希望字典进入对象的数组):

for (int i = 0; i<[dataSource count]-1; i++) {
NSLog(@"in");
NSString *authorString = [NSString stringWithFormat:@"%@",[author objectAtIndex:i]];
NSString *titleString = [NSString stringWithFormat:@"%@",[dataSource objectAtIndex:i]];
NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:titleString, @"TITLE",authorString,@"AUTHOR", nil];
[searchedData addObject:dict];
}

我试过了,但要么它不起作用,要么我不知道如何从数组中的字典中读取数据。我希望能够说“从 searchedData 的对象 n 中的字典中获取键“title”的对象,但我不知道如何做。

非常感谢!!!

卢克

最佳答案

试过这个吗?

NSDictionary *nthDict = [mutableArray objectAtIndex:n];
NSString *title = [nthDict objectForKey:@"TITLE"];
NSString *author = [nthDict objectForKey:@"AUTHOR"];

关于objective-c - 从 NSMutableArray 检索 NSDictionary,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9319065/

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