Answers for "ios iterate through dictionary"

0

ios iterate through dictionary

NSDictionary *myDict = @{@"Key 1" : @"Value 1",
                         @"Key 2" : @"Value 2"}
NSEnumerator *enumerator = [myDict keyEnumerator];
id key = nil;
while((key = [enumerator nextObject]))
    NSLog(@"key=%@ value=%@", key, myDict[key]);
Posted by: Guest on February-17-2020

Code answers related to "ios iterate through dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language