The NIB file contains a Patch Controller, linked to a .qtz file.
The 4 image outputs of the controller are bound to 4 NSImageViews.
UI elements (sliders, buttons, etc) are bound to the controller
inputs as well.
I have several NSImages being produced from another source that I
would like to feed to the Patch Controller as inputs. I have not
found a way to supply inputs programmatically to a NIB's Patch
Controller. setValue appears to not be a method of the controller
or [controller patch].
You can call setValue:forInputKey: on the QCView instead and it
should work fine
Or -setValue:forKeyPath: on the controller object with a key path
similar as the ones used in IB (e.g. patch.myInput.value) should also
work fine
Given the above configuration, what is the standard practice for
moving selected patch states into core data models.
I wouldn't know, I never tried to integrate both, but some people on
the list might have