When debugging Objective-C code, lldb skips calls to objc_msgSend and stops in the actual method being called.
I'd like to have similar behavior when debugging some code that uses NSInvocation
. When reaching the point where -[NSInvocation invoke]
is called, I'd like to make a 'step-in' command and skip objc_msgSend
, -[NSInvocation invoke]
, __invoking___
and objc_msgSend
and land on the actual method.
Are there some LLDB settings that can be used to achieve this?