美文网首页
ios-获取某年某月有多少天

ios-获取某年某月有多少天

作者: IMKel | 来源:发表于2016-12-06 11:41 被阅读527次

    一行代码搞定,示例代码如下:

    NSDate *date = [NSDate date];
    NSRange daysInLastMonth = [[NSCalendar currentCalendar] rangeOfUnit:NSCalendarUnitDay inUnit:NSCalendarUnitMonth forDate:date];
    // dayCountOfThisMonth就是date月份的天数
    NSInteger dayCountOfThisMonth = daysInLastMonth.length;
    

    相关文章

      网友评论

          本文标题:ios-获取某年某月有多少天

          本文链接:https://www.haomeiwen.com/subject/lzfrmttx.html