我有一个网络服务,可以收回一名JSON物体。 答复包括UNIX(milliseconds)格式的复读时间。 我将UNIX时间邮票改为NSDate,其代码如下:
NSDate *date = [NSDate dateWithTimeIntervalSince1970:[[timeInUNIX objectAtIndex:i]doubleValue]/1000];
这使我有时间以形式发言。
2009-11-13 19:47:49 +0000
我只想到这个日期。 这一点很重要,因为这一天用于国家安全局的描述人员,也作为表层的主人,因此,我把日期和时间与以下法典分开:
+ (NSDate *)dateWithOutTime:(NSDate *)datDate {
if( datDate == nil ) {
datDate = [NSDate date];
}
NSDateComponents* comps = [[NSCalendar currentCalendar] components:NSYearCalendarUnit|NSMonthCalendarUnit|NSDayCalendarUnit fromDate:datDate];
return [[NSCalendar currentCalendar] dateFromComponents:comps];
}
The problem here is the returned NSDate object still contains a junk time value. Is there any way to store only the date in NSDate format?
Can someone help me with this?
Regards, iSee