Working with Xcode.
I got framework A
.
I would like to create a framework A_intercept
; which implements the same exported API functions from A
and will eventually forward the same function calls to A. So I create A_intercept
, and added A
to the linked frameworks in "Link Binary with Libraries"
Now, I got some function M in A
, A_intercept
, will also implement it and name it M as well so it could be intercepted; however, How then A_interecept can forward the call to A
; wouldn't that be a recursive call?