I have two NSDictionary objects that are sub elements to a main element in some xml data I have being returned from my server. The xml looks like this: \[code\]<Car> <first element1="1" element2="2"> <second/> </first> <first element1="1" element2="2"> <second/> </first> <first element1="1" element2="2"> <second/> </first></Car>\[/code\]I am saving first and second which contain keyvalues into their own NSDictionary object. The thing is I can have several car elements, so I need to save an array of car elements that contain first and second NSDictionaries, but I'm not quite sure how to do this.Any help would be greatly appreciated.Here is the full XML schematic:\[code\]<Eng> <Result > <Series > <Link/> <FMF/> <AlsoLink/> <Plugins/> </FMF> <Sheet > <Car> <first > <second/> </first> <second > <first/> </second> </Car> </Sheet> </Series> </Result></Eng>\[/code\]