码迷,mamicode.com
首页 > 其他好文 > 详细

OC 解决NSArray、NSDictionary直接打印中文出现乱码的问题

时间:2014-10-30 15:04:49      阅读:2753      评论:0      收藏:0      [点我收藏+]

标签:des   blog   http   io   os   ar   for   sp   div   

在iOS开发中,经常需要查看数组中得元素是否是自己想要的,但是苹果并没有对直接打印数组中得中文作处理,直接打印就会出现一堆很讨厌的东西,解决其实很简单,就是需要通过为NSArray添加分类,重写 - (NSString *)descriptionWithLocale:(id)locale方法即可

代码如下:

bubuko.com,布布扣
#import "NSArray+Log.h"

@implementation NSArray (Log)


- (NSString *)descriptionWithLocale:(id)locale
{
    NSMutableString *str = [NSMutableString stringWithFormat:@"%lu (\n", (unsigned long)self.count];
    
    for (id obj in self) {
        [str appendFormat:@"\t%@, \n", obj];
    }
    
    [str appendString:@")"];
    
    return str;
}
@end
bubuko.com,布布扣

同理要解决NSDictionary乱码问题,也需要为NSDictionary类添加一个分类,重写  - (NSString *)descriptionWithLocale:(id)locale方法

代码如下:

bubuko.com,布布扣
 1 #import "NSDictionary+MyLog.h"
 2 
 3 @implementation NSDictionary (MyLog)
 4 
 5 
 6 - (NSString *)descriptionWithLocale:(id)locale
 7 {
 8     NSArray *allKeys = [self allKeys];
 9     NSMutableString *str = [[NSMutableString alloc] initWithFormat:@"{\t\n "];
10     for (NSString *key in allKeys) {
11         id value= self[key];
12         [str appendFormat:@"\t \"%@\" = %@,\n",key, value];
13     }
14     [str appendString:@"}"];
15     
16     return str;
17 }
18 @end
bubuko.com,布布扣

OC 解决NSArray、NSDictionary直接打印中文出现乱码的问题

标签:des   blog   http   io   os   ar   for   sp   div   

原文地址:http://www.cnblogs.com/Peak-Banish/p/4062432.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!