标签:style blog color ar sp div on 2014 log
NSDate *now = [NSDate date]; NSCalendar *cal = [NSCalendar currentCalendar]; unsigned int unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit | NSWeekdayCalendarUnit; NSDateComponents *dd = [cal components:unitFlags fromDate:now]; int y = [dd year]; int m = [dd month]; int d = [dd day]; int week = [dd weekday]; int hour = [dd hour]; int minute = [dd minute]; int second = [dd second];
标签:style blog color ar sp div on 2014 log
原文地址:http://blog.csdn.net/huang2009303513/article/details/40617641