How do I bind all corresponding elements of several arrays?
Wendt's book Cocoa shows an example binding a property, a slider, and a textfield in IB. Change any one and the other two track its value. It's very simple. Wendt strongly makes the point that controllers are not necessary in simple cases.
I would like to extend this to binding an array of properties, an array of sliders, and an array of textfields. Change the 3rd slider, for example, and the 3rd property and 3rd textfield should change accordingly.
But would an NSArrayController be of any benefit in this case? I plead ignorance because all the examples I've found show NSArrayController used only with NSTable.