Skip to content

Instantly share code, notes, and snippets.

@objcio-user
objcio-user / LoadPosterImageCancellable.swift
Last active April 1, 2024 08:41
Advanced Swift Sample Code
import Foundation
struct Episode: Identifiable, Codable {
var id: String
var poster_url: URL
var collection: String
// ...
static let url = URL(string: "https://talk.objc.io/episodes.json")!
}