ReactiveSwift
ReactiveSwift copied to clipboard
Streams of values over time
I run into an issue that puzzles me, so I am trying to see if others experience the problem, and if this is the expected behaviour. I have the following...
Is there any desire (or opposition) to add support for mapping property types to a binding to work within SwiftUI? Could be particularly helpful when trying to pass reactive values...
Updating the docs - to use the [distantFuture property](https://developer.apple.com/documentation/foundation/date/1779684-distantfuture)
* Use Xcode 15.2 for CI * Bump Nimble and Quick dependencies (used for testing) to latest versions * Bump minimum OS versions to iOS 12, macOS 10.13, tvOS 12,...
A colleague and I collaborated on a GC improvement to this library ~6 months ago after getting the PR merged pinned to that merged commit in cocoa pods. Now we're...
Fixes: #889 [SE-0481](https://github.com/swiftlang/swift-evolution/blob/main/proposals/0481-weak-let.md) would break the current version of the `BindingTarget.init` that takes a keypath. Changing the keypath type from `WritableKeyPath` to `ReferenceWritableKeyPath` fixes this, and is probably what the...
[`UnidirectionalBinding.swift:188`](https://github.com/ReactiveCocoa/ReactiveSwift/blob/7f733497761379030d1b82e36d5b7c3deabbf01b/Sources/UnidirectionalBinding.swift#L188): ```swift public init(on scheduler: Scheduler = ImmediateScheduler(), lifetime: Lifetime, object: Object, keyPath: WritableKeyPath) { self.init(on: scheduler, lifetime: lifetime) { [weak object] in object?[keyPath: keyPath] = $0 } } ```...