//
遍历字典
// NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:@"lilei", @"name", @"male", @"sex", @"18", @"age",nil];
// NSLog(@"%@", dic); // 这和遍历有什么区别,遍历什么用?
// for (NSInteger i = 0; i < dic.count; i++) {
// // 获取每一个key
// NSString *key = [dic.allKeys objectAtIndex:i]; // dic.allKeys是一个数组对象
// // 根据key获取对应value
// NSLog(@"key: %@, value: %@", key, [dic objectForKey:key]);
// }
// NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:@"lilei", @"name", @"male", @"sex", @"18", @"age",nil];
// NSLog(@"%@", dic); // 这和遍历有什么区别,遍历什么用?
// for (NSInteger i = 0; i < dic.count; i++) {
// // 获取每一个key
// NSString *key = [dic.allKeys objectAtIndex:i]; // dic.allKeys是一个数组对象
// // 根据key获取对应value
// NSLog(@"key: %@, value: %@", key, [dic objectForKey:key]);
// }