Translate

2013年2月22日 星期五

NSDate is not correct

本來抓時間我都用很簡單的
NSDate *now_date = [NSDate date];
卻發現抓出來的時間少了8個小時
之後發現原來要加上
NSLocal

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setLocale:[NSLocale currentLocale]]; [dateFormatter setDateFormat:@"yyyy-mm-dd HH:mm:ss Z"]; NSLog(@"結束時間 is %@",[dateFormatter stringFromDate:[NSDate date]]);

沒有留言:

張貼留言