I'd like to make a custom RACSignal, but I'd prefer to not have to make a whole class. I just want to specify a block to call when observers subscribe.
In .Net's Rx I would do this:
return Observable.Create(observer => {
...
// send items to observer
...
return subscriptionDisposer;
});
Does ReactiveCocoa have equivalent functionality?