Reputation: 1
I found that if I added NSObjCMessageLoggingEnabled=YES
to the argument, xCode create for me in run time a file with the methods trace.
For example:
z: appdelegete:didfinishlaunching
z: addElement
...
I don't find the file.
Upvotes: 0
Views: 103
Reputation: 22930
If you set the NSObjCMessageLoggingEnabled environment variable to "YES", the Objective-C runtime will log all dispatched Objective-C messages to a file named /tmp/msgSends-pid/.
Upvotes: 1