问题
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.
回答1:
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())
回答2:
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.
来源:https://stackoverflow.com/questions/32119114/how-to-get-number-of-weeks-by-month-in-year