Week numbers in Swift
To get the current ISO 8601 week number in Swift, use the following code snippet:
let calendar = Calendar(identifier: .iso8601)
let week = calendar.component(.weekOfYear, from: Date())
* Ensure your system or application regional settings are set to follow ISO 8601 standards (weeks start on Monday) if the output varies.