NSDictionary to NSArray

suggest change
NSDictionary *myDictionary = [[NSDictionary alloc] initWithObjectsAndKeys:@"value1", @"key1", @"value2", @"key2", nil];  
NSArray *copiedArray = myDictionary.copy;

Get keys:

NSArray *keys = [myDictionary allKeys];

Get values:

NSArray *values = [myDictionary allValues];

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


NSDictionary:
*NSDictionary to NSArray

Table Of Contents