When I am debugging my app it steps into NSMakeRange every time I push the step over button where the debugging line has a call to NSMakeRange. Why do I get this error?
Asked
Active
Viewed 116 times
1 Answers
1
This happens because NSMakeRange
is an inline function, which means it isn't a real function, the compiler copies its code wherever you use it (a bit like a macro), so its code is actually part of your code.

Guillaume
- 4,331
- 2
- 28
- 31