Charles
Charles

Reputation: 493

How to find the location of error in Xcode

How can I change the preferences in Xcode so that it highlights the exact location of an error like other programming environments instead of simply returning SIGABRT? Or is this not possible?

Upvotes: 1

Views: 2177

Answers (1)

bames53
bames53

Reputation: 88225

Xcode should already stop and show where execution is when a signal like SIGABRT occurs. (It does for me, without any special configuration).

a NSInvalidArgumentException occurs Xcode only highlights main.m

It's not signals you need to catch for that, it's exceptions. Go to the breakpoint navigator and add an exception breakpoint.

Upvotes: 1

Related Questions