Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
975 views
in Technique[技术] by (71.8m points)

objective c - Why does NSAssert break in main instead of in the code that call the assertion

I set this NSAssert

NSAssert(isStillLoadingArgument== [[self class] stillLoading],@"Hmm.... we think isStill Loading is false or true and yet stillLoading is true");;

Here is the screenshot of where I ask this question: enter image description here

Then when assertion fail, the code break here:

enter image description here

Which is very annoying because I want to see the assertion break on the code I set up the assertion instead. So, how do I do so.

Ben answer unfortunately doesn't solve the issue: enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You need to add a Breakpoint to your project for all exceptions.

1) Click on breakpoint navigator

Breakpoint

2) Add an exception breakpoint

Exception

3) Make sure you set it to break on all exceptions

all

Now XCode will break to the actual assert rather than main. Hope this helps!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...