在Objective-C的NSDate中获取一个月的天数?

Posted

技术标签:

【中文标题】在Objective-C的NSDate中获取一个月的天数?【英文标题】:Getting the number of days of the month in NSDate in Objective-C? 【发布时间】:2014-06-29 10:35:49 【问题描述】:

所以我一直试图在 int 中找到一个月的最后一天,但我使用的代码总是认为最后一天是 30

我使用的代码是这样的

NSDate *curDate = [NSDate date];
    NSCalendar* calendar = [NSCalendar currentCalendar];
    NSDateComponents* compsd = [calendar components:NSYearCalendarUnit|NSMonthCalendarUnit|NSWeekCalendarUnit|NSWeekdayCalendarUnit fromDate:curDate]; // Get necessary date components

    // set last of month
    [compsd setMonth:[compsd month]+1];
    [compsd setDay:0];
    NSDate *tDateMonth = [calendar dateFromComponents:compsd];
    //NSLog(@"%@", tDateMonth);

    //[comps setMonth:[comps month]+1];
    //[comps setDay:0];
   // NSDate *tDateMonth = [cal dateFromComponents:comps];
    //NSLog(@"%@", tDateMonth);
     //*/

    NSString *tDateString = [NSString stringWithFormat:@"%@", tDateMonth];
    NSString *dateNTime = [[tDateString componentsSeparatedByString:@"-"] objectAtIndex:2];
    int justDate = [[[dateNTime componentsSeparatedByString:@" "] objectAtIndex:0] intValue];
    NSLog(@"Last Day of %@ is %d", monthName, justDate);

我错过了什么?

【问题讨论】:

Number of days in the current month using iPhone SDK?的可能重复 正如@Fry 所表明的那样,花时间研究 API 可以节省编码时间。 您缺少的(除其他外)是对如何使用 NSDateFormatter 的理解。 您使用 NSCalendar 但从未查看文档以找到 rangeOfUnit?? 【参考方案1】:

试试这个简单的方法:

NSCalendar *cal = [NSCalendar currentCalendar];
NSRange rng = [cal rangeOfUnit:NSDayCalendarUnit 
                        inUnit:NSMonthCalendarUnit
                       forDate:[NSDate date]];
NSUInteger numberOfDaysInMonth = rng.length;

【讨论】:

【参考方案2】:

我想你可以试试这样的东西

NSDate *currentDate = [NSDate date];
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *components = [calendar components:NSYearCalendarUnit|NSMonthCalendarUnit|NSWeekCalendarUnit|NSWeekdayCalendarUnit fromDate:currentDate];

[components setMonth:[components month]+1];
[components setDay:0];
NSDate *theDate = [calendar dateFromComponents:components];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"d"];
[dateFormatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];

NSString *dateString = [dateFormatter stringFromDate:theDate];
NSInteger dateInt = [dateString intValue];
NSLog(@"The int: %i", dateInt);

【讨论】:

以上是关于在Objective-C的NSDate中获取一个月的天数?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 [NSDate 日期] 当天 00:00 获取 NSDate?

获取时间NSDate

如何在 iOS 上将“MongoDB 日期时间(ISO 日期)”解析为 NSDate(swift 和 Objective-c)

如何快速为 NSDate 做核心数据获取谓词?我想按月过滤

来自核心数据的 Objective-C 日期格式

在objective-c中获取一周的第一天和最后一天