Xcode no longer supports ibplugins so I wonder if anyone has any experience using BWToolkit programmatically. Basically BWSplitView does everything I need (the introduction video on the website says it all) but I’m a bit lost on how to use the class.
Has anyone done it?
From looking at the
BWToolkitthere a few key things that I noticed.BWSplitViewis a subclass ofNSSplitView. So it should have somemethods similar (i.e init methods).
BWSplitViewdoes have aninitmethod that lets it be used as asingleton.
So that being said (without trying any of this in Xcode), you should be able to create an instance of
BWSplitViewusing it’s super class,NSSplitView‘s, init method. Then add it to your view.Here is an example (again, untested):
You may have to write some of your accessor methods to BWSplitView private methods.
Hope this helps.