views:

35

answers:

1

I have searched my entire Mac for ibplugin to find the QTKit IBPlugin, but I also came accros a plugin which adds AFAssistantPane to IB. I did a Google-search but Google has no results for it. So, does anyone know how I can use this AFAssistantPane?

alt text

Thanks


Update: I noted that this is in a private framework (that's why it is not documented). Update: The framework doesn't include header files. Must I hack it and recreate the header files?

+1  A: 

There is a command line utility for exploration of private frameworks called class-dump. You can google for it. Here's the first result that came up for me: Dumping the iPhone 2.2 Frameworks.

Eimantas
Awesome thanks! I did `class-dump assistant >> ~/Desktop/Assitant.h` and it has some very nice methods. Cheers!
Time Machine