NSDate * senddate=[NSDate date];
NSDateFormatter *dateformatter=[[NSDateFormatter alloc] init];
[dateformatter setDateFormat:@"yyyy"];
// 今年2016
NSString *thisYearString=[dateformatter stringFromDate:senddate];
本文共 263 字,大约阅读时间需要 1 分钟。
NSDate * senddate=[NSDate date];
NSDateFormatter *dateformatter=[[NSDateFormatter alloc] init];
[dateformatter setDateFormat:@"yyyy"];
// 今年2016
NSString *thisYearString=[dateformatter stringFromDate:senddate];
转载于:https://www.cnblogs.com/KiVen2015/p/9516443.html