CETableViewBinding icon indicating copy to clipboard operation
CETableViewBinding copied to clipboard

Demonstrates a binding helper that makes it easier to bind UITableView instances to ReactiveCocoa ViewModels

Results 3 CETableViewBinding issues
Sort by recently updated
recently updated
newest added

@ColinEberhardt Hey Colin, first thank you very much about this CETableViewBinding Project. I found a issue may be is error. Hope you can check it or right? Kevin. number of...

``` [source subscribeNext:^(id x) { if ([x isKindOfClass:[CEObservableMutableArray class]]) { ((CEObservableMutableArray *)x).delegate = self; } if (self->_data != nil && [self->_data isKindOfClass:[CEObservableMutableArray class]]) { ((CEObservableMutableArray *)self->_data).delegate = nil; } self->_data...

Love this library, it was very cool to take it apart piece by piece and see how it all worked. I noticed though that it doesn't seem to have support...