views:

23

answers:

1

If I want to bind to properties of my custom control from Interface Builder do I need to write my own IB plugin? Will I have to do it programmatically otherwise?

+1  A: 

You will need to write an IB Plugin and expose the control's bindings if you want to establish bindings in Interface Builder. See this answer to a similar question: http://stackoverflow.com/questions/605721/binding-a-custom-nsview-does-it-demand-creating-an-ibplugin/607906#607906

Joshua Nozzi