NSMutableArray *output = [[NSMutableArray alloc]init];
or
NSArray *output = [[NSMutableArray alloc]init];
I can set keys and values. Now, I just want to access each key and value, but I don't know the number of keys set.
In PHP it is very easy, something as follows:
foreach ($output as $key => $value)
How is it possible in Objective-C?