Sometimes when looking at someone else\'s large Objective-C program, it is hard to know where to begin.
In such situations, I think it would be helpful to log every
You could add a symbolic breakpoint to objc_msgSend(), and have it log the second parameter without stopping.
How to do it for your own methods only though is a toucher task. Maybe if you could inspect the class name being called and do some magic to have a conditional breakpoint for only calls where the class' prefix matches your own?