-
I'm a big fan of RAC, but I find that the full FRP experience is too verbose and hard to penetrate for new developers being brought onto a team. It also tends towards a large `bind` method, usually ca…
-
Conceptually, a purely functional reactive program should be modeled as a set of [inputs and outputs](http://blog.maybeapps.com/), but `RACAction` obstructs this pattern.
For example, take this RAC 2…
-
I've noticed that there are many places in the code where something like this happens:
```
@synchronized(whateverLock) {
...
[subscriber sendNext:value];
}
```
Isn't this a potential deadloc…
-
I've started refactoring some projects to use RAC 3.0, and I haven't yet run into a case where `RACPromise` is the _right_ tool to use. It's subject to [all](https://twitter.com/jspahrsummers/status/4…
-
I would like to simplify the API for GUI layout.
Since our focus is on GUIs, I wonder if we should downplay the full HTML capability and instead provide a few combinators for aligning GUI elements. […
-
Hi,
is there a reason that accessing an NSControl's rac_command doesn't return a default-initialised RACCommand?
so:
myButton.rac_command = [ RACCommand command ]
becomes redundant?
I understand t…
antmd updated
11 years ago
-
Hi guys, I have the following setup:
A command:
`@property RACCommand* addToQueueCommand;`
This command is executed on a button press:
```
-(void)buttonPress:... {
[self.addToQueueCommand exec…