---
title: "CFAbsoluteTimeGetDayOfWeek(_:_:)"
framework: corefoundation
role: symbol
role_heading: Function
path: "corefoundation/cfabsolutetimegetdayofweek(_:_:)"
---

# CFAbsoluteTimeGetDayOfWeek(_:_:)

Returns an integer representing the day of the week indicated by the specified absolute time.

## Declaration

```swift
func CFAbsoluteTimeGetDayOfWeek(_ at: CFAbsoluteTime, _ tz: CFTimeZone!) -> Int32
```

## Parameters

- `at`: The absolute time to convert.
- `tz`: The time zone to use for time correction. Pass NULL for GMT.

## Return Value

Return Value An integer (1-7) representing the day of the week specified by at. Per ISO-8601, Monday is represented by 1, Tuesday by 2, and so on.

## See Also

### Core Foundation Time Utilities Miscellaneous Functions

- [CFAbsoluteTimeAddGregorianUnits(_:_:_:)](corefoundation/cfabsolutetimeaddgregorianunits(_:_:_:).md)
- [CFAbsoluteTimeGetCurrent()](corefoundation/cfabsolutetimegetcurrent().md)
- [CFAbsoluteTimeGetDayOfYear(_:_:)](corefoundation/cfabsolutetimegetdayofyear(_:_:).md)
- [CFAbsoluteTimeGetDifferenceAsGregorianUnits(_:_:_:_:)](corefoundation/cfabsolutetimegetdifferenceasgregorianunits(_:_:_:_:).md)
- [CFAbsoluteTimeGetGregorianDate(_:_:)](corefoundation/cfabsolutetimegetgregoriandate(_:_:).md)
- [CFAbsoluteTimeGetWeekOfYear(_:_:)](corefoundation/cfabsolutetimegetweekofyear(_:_:).md)
- [CFGregorianDateGetAbsoluteTime(_:_:)](corefoundation/cfgregoriandategetabsolutetime(_:_:).md)
- [CFGregorianDateIsValid(_:_:)](corefoundation/cfgregoriandateisvalid(_:_:).md)
