Dmitrii Kuznetsov
Dmitrii Kuznetsov
I've tried @tbaranes's solution but I keep getting this error ``` *** Assertion failure in -[UITableView _performDiffableUpdate:], UITableView.m:19143 *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Attempted to apply...
@freak4pc I've managed to repro it with ```CurrentValueRelay```, ```.share(replay:)``` and ```PassthroughRelay```.
@freak4pc Sorry, we dropped iOS 13 support in our app 🤷🏻♂️ So I cannot provide any more details.
You can actually emit steps, but after some delay. I just tried ```swift func previewingContext(_ previewingContext: UIViewControllerPreviewing, commit viewControllerToCommit: UIViewController) { Observable.just(()) .delay(0.5, scheduler: MainScheduler.asyncInstance) .map { _ in AppStep.transactionDetail...