views:

49

answers:

1

hello, How to get all the contents of Hashtable[NSMutableDictionary] into NSMutableArray , which is to be done for iPhone application?

+2  A: 
NSMutableArray *array = [NSMutableArray arrayWithArray:[dictionary allValues]]
Nefrubyr
@Nefrubyr : How to print the values in the array.??Is this the right procedure? ***NSLog(@"%@",array);
suse
Yes, I think that should work. Or `NSLog(@"%@", [array description]);` might format it a bit more nicely.
Nefrubyr