为OSX/iOS输出多字节字符串的更好方法。
#import "MultibyteDescription.h"
int main(int argc, const char * argv[])
{
@autoreleasepool {
[MultibyteDescription install];
NSArray* arr = @[ @"あいうえお", @"カキクケコ", @"abcde", @[ @"らりるれろ", @"らりるれろ" ] , @{ @"English" : @"hello", @"日本語" : @"こんにちは", @"한국어" : @"안녕하세요", @"中文" : @"你好" } ];
NSLog(@"array = \n%@",arr);
NSDictionary* dict = @{ @"キー" : arr };
NSLog(@"dict = \n%@",dict);
NSSet* set = [NSSet setWithArray:arr];
NSLog(@"set = \n%@",set);
NSOrderedSet *orderedSet = [NSOrderedSet orderedSetWithArray:arr];
NSLog(@"orderedSet = \n%@", orderedSet);
NSDate* date = [NSDate date];
NSLog(@"date = \n%@", date);
}
return 0;
}
主要想法来自@yusuga的博文:http://qiita.com/items/85437eba2623f6ffbdbd(日文)
MultibyteDescription
可在Beerware许可证下获取。
如果有一天我们相遇,你认为这个项目值得,你可以请我喝一杯啤酒作为回报。