I love iPhone, Android, Cocos2d-x
Posts tagged locale
[iPhone] 日付をローカライズして表示する
15738日
by matsuura
in iPhone/iPod touch
NSDate のデータを iPhone で設定している言語に合わせて表示する方法です。
NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateStyle:NSDateFormatterLongStyle]; [dateFormatter setTimeStyle:NSDateFormatterNoStyle]; [dateFormatter setLocale:[NSLocale currentLocale]]; NSString* dateString = [dateFormatter stringFromDate:date];