Get Weekday from Date - Swift 3

XcodeDateSwift3

Xcode Problem Overview


I have looked around a bit, but didnt find a quick answer for this in swift 3. I get todays weekday like this:

let weekday = Calendar.current.component(.weekday, from: Date())

But instead, i would like to get the weekday of a given date. How is this done? Thanx

Xcode Solutions


Solution 1 - Xcode

Presumably you have a Date already?

let weekday = Calendar.current.component(.weekday, from: myDate)

Maybe you want the name of the weekday?

let f = DateFormatter()

f.weekdaySymbols[Calendar.current.component(.weekday, from: Date()) - 1]

The -1 is added at the end because Calendar.current.component(.weekday, from: Date()) returns values from 1-7 but weekdaySymbols expects array indices.

Investigate the NSCalendar/DateComponents api or edit your question to be more specific if you need help with the DateComponents api.

Solution 2 - Xcode

let date = Date()
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "EEEE, MMMM dd, yyyy" // OR "dd-MM-yyyy"

let currentDateString: String = dateFormatter.string(from: date)
print("Current date is \(currentDateString)")
   

Current date is Monday, June 29, 2017

Solution 3 - Xcode

Swift5 get week day from DateFormatter

 func getTodayWeekDay()-> String{
        let dateFormatter = DateFormatter()
        dateFormatter.dateFormat = "EEEE"
        let weekDay = dateFormatter.string(from: Date())
        return weekDay
  }

 //eg: // "EEEE" --> "Friday" 
       // "EEE"  --> "Fri"

Solution 4 - Xcode

> If you want dayNumber component in TimeZone

func dayNumberOfWeek() -> Int? {
    let timeZone = TimeZone(abbreviation: "EDT")
    let component =  Calendar.current.dateComponents(in: timeZone!, from: self)
    return  component.day
}

Solution 5 - Xcode

To get local format you can use:

extension Date{

func stringValueFullWithTime()-> String?{
    let dateFormatter = DateFormatter()
    dateFormatter.dateStyle = .full
    dateFormatter.timeStyle = . short
    dateFormatter.locale = Locale.current
    return dateFormatter.string(from: self)
}

This will print as german local:
Sonntag, 11. November 2018 um 11:17

Solution 6 - Xcode

Weekday by default consider first weekday as Sunday, if you wanna support generic context use this extension.

extension Date {

    var calendar: Calendar { Calendar.current }

    var weekday: Int {
        (calendar.component(.weekday, from: self) - calendar.firstWeekday + 7) % 7 + 1
    }
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMartin VidicView Question on Stackoverflow
Solution 1 - XcodeJoe DanielsView Answer on Stackoverflow
Solution 2 - XcodeYakup AdView Answer on Stackoverflow
Solution 3 - XcodeSukhView Answer on Stackoverflow
Solution 4 - XcodeDeveshView Answer on Stackoverflow
Solution 5 - XcodeYedyView Answer on Stackoverflow
Solution 6 - XcodeGiuseppe MazzilliView Answer on Stackoverflow