ReactiveViewModel icon indicating copy to clipboard operation
ReactiveViewModel copied to clipboard

Model-View-ViewModel, using ReactiveCocoa

Results 15 ReactiveViewModel issues
Sort by recently updated
recently updated
newest added

Xcode 10 force to generate errors when using @keypath, including RACObserve, this might be a problem in RACObjC.

I can`t pod install 0.3.3, even if repo update. When run ` pod search ReactiveViewModel`. ``` -> ReactiveViewModel (0.3) Model-View-ViewModel, using ReactiveCocoa. pod 'ReactiveViewModel', '~> 0.3' - Homepage: https://github.com/ReactiveCocoa/ReactiveViewModel -...

Can you add document about how to build it and how to use it?

question

Why `ReactiveViewModel` depend on so old `ReactiveCocoa` version???

It seems that ReactiveViewModel assume that a ViewModel only has 1 Model. What if I want to bind a ViewModel to multiple Models?

Hi! I'm trying to work around [#2383](https://github.com/ReactiveCocoa/ReactiveCocoa/issues/2383). We're using a few `RACSignal`s in our `UICollectionViewCell`s, so we are hitting the performance issues pretty quickly. I saw some talk on #12...

One problem I've yet to find a solution to using MVVM is where to neatly take care of Model > ViewModel conversion/wrapping. I tend to have a ViewModel class per...

question

Hello, I have a retain cycle in my code caused by the following setup in `viewDidLoad` ``` [[[[RACSignal combineLatest:@[RACObserve(self.viewModel,index), /*A*/ self.viewModel.didBecomeActiveSignal]] /*B RACObserve(self.viewModel,active)]]*/ deliverOnMainThread] distinctUntilChanged] subscribeNext:^(RACTuple* x) { ``` The...

bug