翻转字典的key和value
self.typeList = [[NSDictionary alloc]initWithContentsOfFile:_typeListPath];
NSArray *keys = [self.typeList allKeys];
for (NSString *key in keys) {
[self.flipTypeList setObject:key forKey:[self.typeList objectForKey:key]];
}
翻转字典的key和value
self.typeList = [[NSDictionary alloc]initWithContentsOfFile:_typeListPath];
NSArray *keys = [self.typeList allKeys];
for (NSString *key in keys) {
[self.flipTypeList setObject:key forKey:[self.typeList objectForKey:key]];
}