Open DK3369 opened 1 year ago
This is a duplicate of issue https://github.com/NoTests/RxFeedback.swift/issues/66.
private func bindingsStrongify<Event, O, WeakOwner>( owner: WeakOwner, bindings: https://github.com/escaping (WeakOwner, O) -> (Bindings)) -> (O) -> (Bindings) where WeakOwner: AnyObject { return { [weak owner] state -> Bindings in guard let strongOwner = owner else {
return Bindings(subscriptions: [], events: [Observable<Event>]())
}
return bindings(strongOwner, state)
}
}
//Add this to Fix it public typealias Observable = RxSwift.Observable
Xcode 15 M1