Has anybody made self updating mutable table view based on a RACSignal?

ios, objective-c, racsignal, reactive-cocoa

Solution

ReactiveCocoa 3.0 (currently in development) adds a category on UITableView that does just that.

I haven't updated it in a couple weeks, but I made an early podspec for it: https://gist.github.com/adlai-holler/ae321c3398d7db9a55c0

Problem

Now that there's a full support for KVO, has anybody made a mutable table view that takes a RACSignal as its dataSource? Ideally something that doesn't require any configuration. ``` RACSignal *commentsSignal; UITableView *table = [UITableView new]; table.dataSourceSignal = commentsSignal; [self.view addSubview:table]; // No more basic config ```

Original source