NSDictionary遍历全部的key和Values

NSDictionary遍历所有的key和ValuesNSEnumerator *enumerator [theSelectedRowDict objectEnumerator]i

NSDictionary遍历所有的key和Values

NSEnumerator *enumerator = [theSelectedRowDict objectEnumerator];id key;while ((key = [enumerator nextObject])) {DLog(@">>>>>>>>>@@@>>>%@", key);/* code that uses the returned key */}

?

?

遍历key:

NSEnumerator *enumerator = [theSelectedRowDict keyEnumerator];id key;while ((key = [enumerator nextObject])) {DLog(@">>>>>>>>>@@@>>>%@", key);/* code that uses the returned key */}
?