0

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?

Laureano Bonilla
  • 335
  • 3
  • 18

1 Answers1

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