Filtration by Comparison of Dictionary Objects in NSArray
问题 I have an array of dictionaries that I need to filter in a very specific way. It's easiest to explain by example. Let's say I have an array containing the following three dictionaries where @"threadId", @"subject", @"messageId" are keys: NSDictionary #1: @"threadId" : @"1234" @"subject" : @"hello" @"messageId" : @"0001" NSDictionary #2: @"threadId" : @"1234" @"subject" : @"hello" @"messageId" : @"0002" NSDictionary #3: @"threadId" : @"9101" @"subject" : @"goodbye" @"messageId" : @"0005" I'm