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
2010-02-16 13:21:40
@Nefrubyr : How to print the values in the array.??Is this the right procedure? ***NSLog(@"%@",array);
suse
2010-02-17 03:05:35
Yes, I think that should work. Or `NSLog(@"%@", [array description]);` might format it a bit more nicely.
Nefrubyr
2010-02-17 11:42:58