|
|
|
|
|
by 21echoes
3500 days ago
|
|
The one issue I see with bringing Flux/Redux to iOS is that iOS shipped with unidirectional data flow from day 1 with KVO: view => IBAction on controller => model method (incl. any API or CoreData work) => controller is notified of changes via KVO => rerenders view via a pure function. I don't think it was struggling for a new, clean solution here in the same way the web was. That said, for people used to the React patterns, this could be a somewhat easy way to make the transition over to iOS programming! So that's cool :D |
|