Hi,
the question explains it all.
For instance, if I have a NSDictionary like this first = ("a", "b", "c"), second = ("d", "e", "f") third = ("g", "h", "i")
And I'd like to loop on them to make some operations. Is it possible?
Thanks
Hi,
the question explains it all.
For instance, if I have a NSDictionary like this first = ("a", "b", "c"), second = ("d", "e", "f") third = ("g", "h", "i")
And I'd like to loop on them to make some operations. Is it possible?
Thanks
Finally found it.
for (id theKey in theDictionary) {
id theObject = [[theDictionary objectForKey:theKey] retain];
}