NSDate1.NSDate对象用来表示一个具体的时间点。2.NSDate是一个类簇,我们使用的NSDate对象都是它的私有子类的实体。3.NSDate存储的是GMT时间,使用的时候会根据 当前应用 指定的 时区 进行时间上的增减,以供计算或显示。NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDate *now;
NSDateComponents *comps = [[NSDateComponents alloc] init];
NSInteger unitFlags = NSYearCalendarUnit |
NSMonthCalendarUnit |
NSDayCalendarUnit |
NSWeekdayCalendarUnit |
NSHourCalendarUnit |
NSMinuteCalendarUnit |
NSSecondCalendarUnit;
now=[NSDate date];
comps = [calendar components:unitFlags fromDate:now];
NSInteger year = [comps year];
NSInteger month = [comps month];
NSInteger day = [comps day];
NSInteger hour = [comps hour];
NSInteger min = [comps minute];
NSInteger sec = [comps second];
NSLog(@"year:%ld
month:%ld
day:%ld
hour:%ld
min:%ld
sec:%ld",
year,
month,
day,
hour,
min,
sec);
//组装
NSString *stringDate = [NSString stringWithFormat:@"%ld%ld%ld%ld%ld%ld",
year,
month,
day,
hour,
min,
sec
];
NSLog(@"stringDate:%@", stringDate);iOS获取当前时间 源代码免费下载地址在 http://linux.linuxidc.com/用户名与密码都是www.linuxidc.com具体下载目录在 /2013年资料8月/14日/iOS获取当前时间下载方法见 http://www.linuxidc.com/Linux/2013-07/87684.htm