iosswiftnscalendarweek-number

How to get number of weeks by month in year?


I want a function that will return an array of week numbers for current month in current year.

For example if the current month is August, 2015 it will return [32, 33, 34, 35, 36]. If month is February, 2015 it will return [6, 7, 8, 9].

Is there a way how can I get this?

In apple docs NSCalendar class has an option to get the number of current week in year but It's not what I need.


Solution

  • As already mentioned NSCalendar has a method rangeOfUnit:inUnit:forDate:. The proper calendar units are CalendarUnitWeekOfYear and CalendarUnitMonth

    The result might be different for the locale and first weekday of the week settings.

    let calendar = NSCalendar.currentCalendar()
    let weekRange = calendar.rangeOfUnit(NSCalendarUnit.CalendarUnitWeekOfYear, inUnit: .CalendarUnitMonth, forDate: NSDate())
    let weekArray = Array(weekRange.location..<weekRange.location + weekRange.length)
    

    Swift 3:

    let calendar = Calendar.current
    let weekRange = calendar.range(of: .weekOfYear, in: .month, for: Date())