最佳答案
在没有其他信息的情况下,如何获取NSDate
对象的年/月/日?我意识到我可以用类似这样的东西来做这件事:
NSCalendar *cal = [[NSCalendar alloc] init];
NSDateComponents *components = [cal components:0 fromDate:date];
int year = [components year];
int month = [components month];
int day = [components day];
但是对于像获取NSDate
的年/月/日这样简单的事情来说,这似乎是一大堆麻烦。还有其他解决办法吗?