Swift
Apple's language for iOS, macOS and beyond, including SwiftUI and Foundation APIs. Modern, statically typed, with strong optionals and value semantics.
How-to
Format a Date in Swift
Turn a Date into a localized string with the modern formatted API or a reusable DateFormatter.
How-toMake a GET Request in Swift
Fetch data from a URL using URLSession's async/await API and decode the response.
ConceptOptionals in Swift
A type-level way to represent the presence or absence of a value, forcing you to handle nil explicitly.
How-toParse JSON in Swift
Decode JSON into strongly typed Swift structs with JSONDecoder and the Codable protocol.