gpt4 book ai didi

iOS sdk NSArray 内的 NSArray 查找和合并

转载 作者:行者123 更新时间:2023-11-29 00:29:01 29 4
gpt4 key购买 nike

我正在尝试在多个 NSArray 中搜索和合并对象。

基本上 NSArray 具有多个 NSArray 和 1 个对象,然后是 NSDictionary。我想检查该对象是否已经存在并将其与现有对象合并,这样它就会是 NSSArray,它有一个带有 1 个对象的 NSArray,然后是多个 NSDictionary。在 Objective-c 中。

(
(
"The Essential: Céline Dion",
{
"album": "The Essential: Céline Dion",
"artwork": "<UIImage: 0x608000087210>, {512, 506}",
"title": "It's All Coming Back to Me Now"
}
),
(
"Ah Via Musicom",
{
"album": "Ah Via Musicom",
"artwork": "<UIImage: 0x60000008a6e0>, {600, 600}",
"title": "Cliffs of Dover"
}
),
(
"Tears Roll Down (Greatest Hits 82-92)",
{
"album": "Tears Roll Down (Greatest Hits 82-92)",
"artwork": "<UIImage: 0x6080000887a0>, {512, 512}",
"title": "Everybody Wants to Rule the World"
}
),
(
"No Money - Single",
{
"album": "No Money - Single",
"artwork": "<UIImage: 0x6080000845b0>, {600, 600}",
"title": "No Money"
}
),
(
"Tears Roll Down (Greatest Hits 82-92)",
{
"album": "Tears Roll Down (Greatest Hits 82-92)",
"artwork": "<UIImage: 0x60800008d5c0>, {512, 512}",
"title": "Shout"
}
),
(
"STAB!",
{
"album": "STAB!",
"artwork": "<UIImage: 0x60800008da20>, {512, 512}",
"title": "Will You Remember Me?"
}
),
(
"Life After Sundown",
{
"album": "Life After Sundown",
"artwork": "<UIImage: 0x60000008d840>, {600, 600}",
"title": "Werewolves On Wheels"
}
)
)

对此

(
(
"The Essential: Céline Dion",
{
"album": "The Essential: Céline Dion",
"artwork": "<UIImage: 0x608000087210>, {512, 506}",
"title": "It's All Coming Back to Me Now"
}
),
(
"Ah Via Musicom",
{
"album": "Ah Via Musicom",
"artwork": "<UIImage: 0x60000008a6e0>, {600, 600}",
"title": "Cliffs of Dover"
}
),
(
"Tears Roll Down (Greatest Hits 82-92)",
{
"album": "Tears Roll Down (Greatest Hits 82-92)",
"artwork": "<UIImage: 0x6080000887a0>, {512, 512}",
"title": "Everybody Wants to Rule the World"
},
{
"album": "Tears Roll Down (Greatest Hits 82-92)",
"artwork": "<UIImage: 0x60800008d5c0>, {512, 512}",
"title": "Shout"
}
),
(
"No Money - Single",
{
"album": "No Money - Single",
"artwork": "<UIImage: 0x6080000845b0>, {600, 600}",
"title": "No Money"
}
),
(
"STAB!",
{
"album": "STAB!",
"artwork": "<UIImage: 0x60800008da20>, {512, 512}",
"title": "Will You Remember Me?"
}
),
(
"Life After Sundown",
{
"album": "Life After Sundown",
"artwork": "<UIImage: 0x60000008d840>, {600, 600}",
"title": "Werewolves On Wheels"
}
)
)

最佳答案

让我们将原始数组称为mainArray

首先,您从该 mainArray 中收集唯一的名称。

NSMutableArray *uniqueNames = [NSMutableArray array];

for (NSArray *sub in mainArray) {
NSString *name = [sub firstObject];
BOOL isDuplicate = [[uniqueNames filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF contains %@",name]] count] > 0;
if (!isDuplicate) {
[uniqueNames addObject:name];
}
}

之后,循环遍历 uniqueNames 数组并在 mainArray 中搜索重复项并重新构造数组。

NSMutableArray *final = [NSMutableArray array];
for (NSString *name in uniqueNames) {
NSPredicate *namePredicate = [NSPredicate predicateWithFormat:@"SELF contains %@",name];
NSArray *duplicateArrays = [mainArray filteredArrayUsingPredicate:namePredicate];
if ([duplicateArrays count] > 1) {
NSMutableArray *newArray = [NSMutableArray arrayWithObject:name];
for (NSArray *duplicateArray in duplicateArrays) {
[newArray addObject:[duplicateArray lastObject]];
}
[final addObject:newArray];
}
else{
[final addObject:duplicateArrays];
}
}

这里的final数组就是你的结果。

关于iOS sdk NSArray 内的 NSArray 查找和合并,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42358860/

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