I’m looking for a class in Objective C similar to C#’s KeyValuePair (even without the generics). Just anything that has a first/second object. I can create my own with no problem, but I figure if one is already there, then there is no need to re-invent the wheel. I have not had any luck findind one myself… Does anyone know of one?
I’m looking for a class in Objective C similar to C#’s KeyValuePair (even without
Share
So basically like a hashmap, right?
Use NSMutableDictionary
Example from here: