Câu hỏi được gắn thẻ «nsdatecomponents»

17
NSDate nhận năm / tháng / ngày
Làm thế nào tôi có thể nhận được năm / tháng / ngày của một NSDateđối tượng, không có thông tin nào khác? Tôi nhận ra rằng tôi có thể có thể làm điều này với một cái gì đó tương tự như thế này: NSCalendar *cal = [[NSCalendar alloc] …

22
NSD ngày đầu ngày và cuối ngày
-(NSDate *)beginningOfDay:(NSDate *)date { NSCalendar *cal = [NSCalendar currentCalendar]; NSDateComponents *components = [cal components:( NSMonthCalendarUnit | NSYearCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit ) fromDate:date]; [components setHour:0]; [components setMinute:0]; [components setSecond:0]; return [cal dateFromComponents:components]; } -(NSDate *)endOfDay:(NSDate *)date { NSCalendar *cal = [NSCalendar currentCalendar]; NSDateComponents *components = [cal components:( NSMonthCalendarUnit …
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.