Skip to content

Instantly share code, notes, and snippets.

@bpisano
Created June 18, 2019 09:01
Show Gist options
  • Select an option

  • Save bpisano/46840c7b706b9f0cd51529c991c7f48b to your computer and use it in GitHub Desktop.

Select an option

Save bpisano/46840c7b706b9f0cd51529c991c7f48b to your computer and use it in GitHub Desktop.
Embedded code in my Weather article on Medium
import SwiftUI
import Combine
class CityStore: BindableObject {
let didChange = PassthroughSubject<CityStore, Never>()
var cities: [City] = [City(name: "Chambery")] {
didSet {
didChange.send(self)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment