-
Notifications
You must be signed in to change notification settings - Fork 102
/
NSArray+HYBUnicodeReadable.m
91 lines (77 loc) · 3.54 KB
/
NSArray+HYBUnicodeReadable.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
//
// NSArray+HYBUnicodeReadable.m
// demo
//
// Created by huangyibiao on 15/12/29.
// Copyright © 2015年 huangyibiao. All rights reserved.
//
#import "NSArray+HYBUnicodeReadable.h"
@implementation NSArray (HYBUnicodeReadable)
#if DEBUG
- (NSString *)descriptionWithLocale:(id)locale indent:(NSUInteger)level
{
NSMutableString *desc = [NSMutableString string];
NSMutableString *tabString = [[NSMutableString alloc] initWithCapacity:level];
for (NSUInteger i = 0; i < level; ++i) {
[tabString appendString:@"\t"];
}
NSString *tab = (level > 0) ? tabString : @"";
[desc appendString:@"(\n"];
for (int i = 0; i < self.count; i++)
{
id obj = self[i];
if ([obj isKindOfClass:[NSDictionary class]]
|| [obj isKindOfClass:[NSArray class]]
|| [obj isKindOfClass:[NSSet class]])
{
NSString *str = [((NSDictionary *)obj) descriptionWithLocale:locale indent:level + 1];
(i == (self.count - 1)) ? [desc appendFormat:@"%@\t%@\n", tab, str] : [desc appendFormat:@"%@\t%@,\n", tab, str];
}
else if ([obj isKindOfClass:[NSString class]])
{
(i == (self.count - 1)) ? [desc appendFormat:@"%@\t\"%@\"\n", tab, obj] : [desc appendFormat:@"%@\t\"%@\",\n", tab, obj];
}
else if ([obj isKindOfClass:[NSData class]])
{
// 如果是NSData类型,尝试去解析结果,以打印出可阅读的数据
NSError *error = nil;
NSObject *result = [NSJSONSerialization JSONObjectWithData:obj
options:NSJSONReadingMutableContainers
error:&error];
// 解析成功
if (error == nil && result != nil)
{
if ([result isKindOfClass:[NSDictionary class]]
|| [result isKindOfClass:[NSArray class]]
|| [result isKindOfClass:[NSSet class]])
{
NSString *str = [((NSDictionary *)result) descriptionWithLocale:locale indent:level + 1];
(i == (self.count - 1)) ? [desc appendFormat:@"%@\t%@\n", tab, str] : [desc appendFormat:@"%@\t%@,\n", tab, str];
}
else if ([obj isKindOfClass:[NSString class]])
{
(i == (self.count - 1)) ? [desc appendFormat:@"%@\t\"%@\"\n", tab, result] : [desc appendFormat:@"%@\t\"%@\",\n", tab, result];
}
}
else {
@try {
NSString *str = [[NSString alloc] initWithData:obj encoding:NSUTF8StringEncoding];
if (str != nil) {
(i == (self.count - 1)) ? [desc appendFormat:@"%@\t\"%@\"\n", tab, str] : [desc appendFormat:@"%@\t\"%@\",\n", tab, str];
} else {
(i == (self.count - 1)) ? [desc appendFormat:@"%@\t%@\n", tab, obj] : [desc appendFormat:@"%@\t%@,\n", tab, obj];
}
}
@catch (NSException *exception) {
(i == (self.count - 1)) ? [desc appendFormat:@"%@\t%@\n", tab, obj] : [desc appendFormat:@"%@\t%@,\n", tab, obj];
}
}
} else {
(i == (self.count - 1)) ? [desc appendFormat:@"%@\t%@\n", tab, obj] : [desc appendFormat:@"%@\t%@,\n", tab, obj];
}
}
[desc appendFormat:@"%@)", tab];
return desc;
}
#endif
@end