嗨,我有两个数组,一个是已解析数据,每个单元格有多个条目(文件夹名称和 ID)我希望将此数据保存到另一个数组中,就像它存储在第一个数组中一样
FilteredData = [[NSMutableArray alloc]initWithArray:[ParsedData ValueForKey:@"FolderName"]];
SearchData = [[NSMutableArray alloc]initWithArray:FilteredData];
这就是我一直在尝试的,每个条目中包含字典的数据是 ParsedData,而我必须在其中复制这些项目的数组是 SearchData。
包含字典的数组(解析数据)如下所示
PARSED DATA (
{
CreatedBy = 1;
FolderName = Posteingang;
ID = 13000;
ParentID = 0;
},
{
CreatedBy = 1;
FolderName = Freigaben;
ID = 13001;
ParentID = 0;
},
从这个数组中,我需要获取 FolderName 和 ID 并将它们放在 SearchData 数组中
SearchData (
Posteingang;
13000;
Freigaben;
13001;
)
我希望这个问题现在很清楚