objective c - How can I pass values from obj-C to a quartz composer view? -


in .xib application i'm working on, have quartz composer viewer object (qcview) in window. have patch controller (qcpatchcontroller). patch controller has own class files in xcode, aren't doing right now. following apple docs, able bind values within .nib file if edited text field, pass value published input on qc document. unfortunately, these docs nothing how pass values programatically. how can pass values (in code) qc patch?

thanks in advance!

you should able use -setvalue:forkeypath:. example:

[patchcontroller setvalue:@"foo" forkeypath:@"patch.stringinput.value"]; 

Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -