pmusolino / Wormholy

iOS network debugging, like a wizard 🧙‍♂️
MIT License
2.35k stars 189 forks source link

fix: `keyWindow` deprecation warning #120

Closed gmoraleda closed 2 years ago

gmoraleda commented 2 years ago

The current method to select the rootViewController from the key window was deprecated as of iOS 13. This PR uses the non-deprecated approach.

pmusolino commented 2 years ago

Hello there. Did you test this also on previous version of iOS (like iOS 15/14)?

gmoraleda commented 2 years ago

Hello there. Did you test this also on previous version of iOS (like iOS 15/14)?

Yes, we are currently using it on an app targeting iOS 14. The windows property was introduced in iOS 2 I believe.

gmoraleda commented 2 years ago

A long term migration will be stepping out of UIApplication.shared.windows and adopt UISeceneDelegate, tho.