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.
Asked
Active
Viewed 213 times
2
-
More importantly, how would you find out if these SDK's are both swizzling? – Chris Paveglio Apr 21 '17 at 13:18
1 Answers
2
Depending on swizzling approach, few different scenarios possible:
- Infinite recursion - stack overflow
- The latter swizzled implementation will be used
- Some kind of chain of responsibility is built

Yuliya Keskin
- 45
- 4