//// NSDictionary+ZXPUnicode.m// House//// Created by coffee on 15/9/14.// Copyright (c) 2015年 cylkj. All rights reserved.//#import "NSDictionary+ZXPUnicode.h"#import "NSObject+ZXPUnicode.h"#import <objc/runtime.h>@implementationNSDictionary(ZXPUnicode)+(void)load{method_exchangeImplementations(class_getInstanceMethod([selfclass],@selector(description)),class_getInstanceMethod([selfclass],@selector(replaceDescription)));method_exchangeImplementations(class_getInstanceMethod([selfclass],@selector(descriptionWithLocale:)),class_getInstanceMethod([selfclass],@selector(replaceDescriptionWithLocale:)));method_exchangeImplementations(class_getInstanceMethod([selfclass],@selector(descriptionWithLocale:indent:)),class_getInstanceMethod([selfclass],@selector(replaceDescriptionWithLocale:indent:)));}-(NSString*)replaceDescription{return[NSObjectstringByReplaceUnicode:[selfreplaceDescription]];}-(NSString*)replaceDescriptionWithLocale:(nullableid)locale{return[NSObjectstringByReplaceUnicode:[selfreplaceDescriptionWithLocale:locale]];}-(NSString*)replaceDescriptionWithLocale:(nullableid)localeindent:(NSUInteger)level{return[NSObjectstringByReplaceUnicode:[selfreplaceDescriptionWithLocale:localeindent:level]];}@end