Re: objc_msgSend() selector name: tableView:objectValueForTableColumn:row:
Re: objc_msgSend() selector name: tableView:objectValueForTableColumn:row:
- Subject: Re: objc_msgSend() selector name: tableView:objectValueForTableColumn:row:
- From: Jens Alfke <email@hidden>
- Date: Thu, 09 Apr 2015 15:38:29 -0700
> On Apr 9, 2015, at 11:35 AM, Raglan T. Tiger <email@hidden> wrote:
>
> Isn't this for use within Xcode? I am running the app on a 10.6.8 machine , not from Xcode on that machine.
No, it’s not dependent on Xcode. It’s just a troubleshooting mode built into the Obj-C runtime that’s triggered by an environment variable. If you want to enable it without Xcode, just use a Terminal window to set the environment variable in the shell and launch your app:
$ export NSZombieEnabled=YES
$ MyApp.app/Contents/MacOS/MyApp
Or if you want to use a debugger:
$ lldb MyApp.app/Contents/MacOS/MyApp
(lldb) env NSZombieEnabled=YES
(lldb) run
—Jens
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden