I have an array of dictionaries. I would like to extract an array with all the elements of one particular key of the dictionaries in the original array. Can this be done wit
Yes, use the NSArray -valueForKey: method.
NSArray *extracted = [sourceArray valueForKey:@"a key"];