Removed RACCommand from view model.

This commit is contained in:
Ash Furrow
2013-10-22 18:47:44 -04:00
parent 4c848aa915
commit 8cf696d1cd
3 changed files with 2 additions and 11 deletions

View File

@@ -57,7 +57,7 @@ static NSString *CellIdentifier = @"Cell";
// Binding to view model
@weakify(self);
[self.viewModel.collectionViewReloadCommand.executionSignals subscribeNext:^(id x) {
[RACObserve(self.viewModel, photosArray) subscribeNext:^(id x) {
@strongify(self);
[self.collectionView reloadData];
}];