TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | Custom |
ReleasedLast Release | Dec 2014 |
Maintained by Yasuhiro Inami.
A better way to NSLog multibyte string for 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;
}
Main idea is from @yusuga's post: http://qiita.com/items/85437eba2623f6ffbdbd (in Japanese)
MultibyteDescription
is available under the Beerware license.
If we meet some day, and you think this stuff is worth it, you can buy me a beer in return.