12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // NSDictionary+Log.m
- // VclustersGemini
- //
- // Created by xd h on 2020/6/24.
- // Copyright © 2020 APPLE. All rights reserved.
- //
- #import "NSDictionary+Log.h"
- @implementation NSDictionary (Log)
- - (NSString *)descriptionWithLocale:(id)locale indent:(NSUInteger)level
- {
- NSMutableString *mStr = [NSMutableString string];
- NSMutableString *tab = [NSMutableString stringWithString:@""];
- for (int i = 0; i < level; i++) {
- [tab appendString:@"\t"];
- }
- [mStr appendString:@"{\n"];
- NSArray *allKey = self.allKeys;
- for (int i = 0; i < allKey.count; i++) {
- id value = self[allKey[i]];
- NSString *lastSymbol = (allKey.count == i + 1) ? @"":@";";
- if ([value respondsToSelector:@selector(descriptionWithLocale:indent:)]) {
- [mStr appendFormat:@"\t%@%@ = %@%@\n",tab,allKey[i],[value descriptionWithLocale:locale indent:level + 1],lastSymbol];
- } else {
- [mStr appendFormat:@"\t%@%@ = %@%@\n",tab,allKey[i],value,lastSymbol];
- }
- }
- [mStr appendFormat:@"%@}",tab];
- return mStr;
- }
- @end
|