2

If I add 2 SDKs in my iOS app, which inside doing method swizzling for same method "ViewDidAppear" then what could (good + bad) be happened at runtime.

1 Answers1

2

Depending on swizzling approach, few different scenarios possible:

  1. Infinite recursion - stack overflow
  2. The latter swizzled implementation will be used
  3. Some kind of chain of responsibility is built