控制台输出中文

扩展

920 发布: 2021/5/8 12:30 本文总阅读量
NSDictionary扩展
@implementation NSDictionary (RKLogJson)

#if DEBUG
- (NSString *)descriptionWithLocale:(nullable id)locale indent:(NSUInteger)level{
    if ([NSJSONSerialization isValidJSONObject:self]) {
        return [[NSString alloc] initWithData:[NSJSONSerialization dataWithJSONObject:self options:NSJSONWritingPrettyPrinted error:nil] encoding:NSUTF8StringEncoding];
    }
    return @"rk=invalid json";
}
#endif
@end