I'm building a custom ios application (won't be submitted to App store) and I would like to use some private APIs. Since I don't have the source, how do I determine the class of an "id" object defined in the header files.
For example:
- (void) blahFunction:(id)arg1;
How can I find out the expected class object of arg1?
Thanks!