2015年9月14日 星期一

[iOS] NSDateFormatter 永遠使用西曆

今天碰到手機上傳一個奇怪的時間參數
"2558-09-12 12:58:42+0700"
原來是因為使用泰國曆的原因
所以把程式裡有關NSCalendar/NSDateFormatter/UIDatePicker
裡全都調成只能使用西曆

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setCalendar:[[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar]];

沒有留言:

張貼留言