Reputation: 269
I need list of environment variable that are used in Objective C.
e.g NSObjCMessageEnabled: YES
which is used for method logging. Please list down all such methods.
Upvotes: 3
Views: 1367
Reputation: 8180
Regarding Apple's documentation, the list varies from release-to-release. E.g., for my OSX 10.2.8, the following debugging environment variables exist (beside of NSObjCMessageLoggingEnabled):
If you want to get the list at your system, set OBJC_HELP
to YES
and start a program. Then, the list is dumped.
Upvotes: 4