Alexis Schultz
Alexis Schultz
Same here did you manage to solve it ?
+1 for a better way to support parameters in body and query
Hi what's the status of the support for error views ? Also will there be a nice way to connect this to the ViewModel extension to handle Content, Empty and...
Most UIKit delegates like UICollectionViewDelegate have proxies already implemented in RxCocoa. In those cases you can simply do: ``` collectionView.rx .setDelegate(CustomDelegate) .disposed(by: bag) ``` without extending anything. You would implement...
Try something along those lines: ``` extension UIDocumentPickerViewController: HasDelegate { public typealias Delegate = UIDocumentPickerDelegate } private class RxUIDocumentPickerDelegateProxy: DelegateProxy, DelegateProxyType, UIDocumentPickerDelegate { public weak private (set) var controller: UIDocumentPickerViewController?...
If you init the action in the viewModel you are forced to inject all the action dependencies into the viewModel. Being able to init the action and injecting it into...
I still had a couple issues with this but not really reproducible. I wonder if the distincUntilChanged is the culprit.
Generating all the patterns was my first idea but I didn't knew how to integrate it into the lib. Your builder is definitely a nice solution ! I like how...
Seems good to me, I think It would be sufficient for my use case. I've read that Swift 5 is coming with native support for string regex for your information,...
I think one additional thing to consider is whether the tabview is embedded into the NavigationView or the opposite. (One navigation view vs one per tab) As one cannot hide...