I'm trying to set up a QCView inside a Cocoa project but seem to be going round in circles as much of the available documentation is depreciated. I've followed this:
http://kineme.net/forum/DevelopingCompositions/ProblemusingQCPatchController#comment-23250
And got some simple KVC bindings working. But can't work out how to access the published inputs on a code level.
I understand that you can use setValue: forKeyPath: but dont know how to access the Object controller that was created in the IB interface by dragging and dropping.
How can i find out what the active Object controller is called? Once I know what that ivar is, is it as simple as:
[NSObjectContoller setValue:(id) forKeyPath:(NSString)];
Or is there something more to this?