本文介绍了通过NSDate获取时间和日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何从NSDate中检索日期和时间。
我想分别看到它们。
谢谢
解决方案
NSDate * localDate = [NSDate date]
NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init];
dateFormatter.dateFormat = @MM / dd / yy;
NSString * dateString = [dateFormatter stringFromDate:localDate];
NSDateFormatter * timeFormatter = [[NSDateFormatter alloc] init];
timeFormatter.dateFormat = @HH:mm:ss;
NSString * dateString = [timeFormatter stringFromDate:localDate];
有很多不同的方式来表示日期和时间,所以检查NSDateFormatter了解更多信息。 p>
how can I retrieve the date and time from a NSDate.I want to see them separately.thanks
解决方案
NSDate *localDate = [NSDate date];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
dateFormatter.dateFormat = @"MM/dd/yy";
NSString *dateString = [dateFormatter stringFromDate: localDate];
NSDateFormatter *timeFormatter = [[NSDateFormatter alloc]init];
timeFormatter.dateFormat = @"HH:mm:ss";
NSString *dateString = [timeFormatter stringFromDate: localDate];
There are many many different ways to represent the date and time so check NSDateFormatter for more info.
这篇关于通过NSDate获取时间和日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!