Hacker News new | ask | show | jobs
by newZWhoDis 1075 days ago
>The problem we’ve found is that integrating SwiftUI in existing UIKit apps that also rely on stuff like RxSwift isn’t easy

Your RxSwift codebase should have converted to Combine 3 years ago, and today you’d map the observable streams to SwiftUI with a simple @Published property wrapper (now called macro… ugh)

It’s really not that hard, and Combine can push your state to both new and legacy views with a few lines of hookup.