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

做NSArray分类,能正常显示中文

时间:2014-05-25 03:42:18      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   blog   c   code   

NSArray+Log.m
bubuko.com,布布扣
 1 #import "NSArray+Log.h"
 2 
 3 @implementation NSArray (Log)
 4 
 5 - (NSString *)descriptionWithLocale:(id)locale
 6 {
 7     // 遍历数组中的所有内容,将内容拼接成一个新的字符串返回
 8     NSMutableString *strM = [NSMutableString string];
 9     
10     [strM appendString:@"(\n"];
11     
12     // 遍历数组,self就是当前的数组
13     for (id obj in self) {
14         // 在拼接字符串时,会调用obj的description方法
15         [strM appendFormat:@"\t%@,\n", obj];
16     }
17     
18     [strM appendString:@")"];
19     
20     return strM;
21 }
22 
23 @end
bubuko.com,布布扣

 

做NSArray分类,能正常显示中文,布布扣,bubuko.com

做NSArray分类,能正常显示中文

标签:des   style   class   blog   c   code   

原文地址:http://www.cnblogs.com/wentianblog/p/3750500.html

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