[Solved] How to get dates for every thursday or other day of week in specific month?
Short solution: // Get current calendar and current date let calendar = Calendar.current let now = Date() // Get the current date components for year, month, weekday and weekday ordinal var components = calendar.dateComponents([.year, .month, .weekdayOrdinal, .weekday], from: now) // get the range (number of occurrences) of the particular weekday in the month let range … Read more