-3

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.

mkz
  • 2,302
  • 2
  • 30
  • 43

2 Answers2

4

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())
vadian
  • 274,689
  • 30
  • 353
  • 361
1

NSCalendar doesn't give any api directly to get the number of weeks in a month. You have to work around with NSDateComponents and NSDate too.

I can give you the hints but as Steve suggested, you need to try by yourself first.

Try getting a range, look into NSCalendar's method- rangeOfUnit:inUnit: Think, how you can use this method to get your desired output.

Natasha
  • 6,651
  • 3
  • 36
  • 58