When I started using new build on iOS 11, I've started receiving warnings about using UIApplication.delegate not on the main processing thread.
UIApplication.delegate
I need to review usages of that variable and to remove this warning as it may cause crashes on future versions of iOS (ie. 11.1).
I've modified our source code to reduce usage of UIApplication.delegate to minimum and to make sure that it is called from the main thread.
When I started using new build on iOS 11, I've started receiving warnings about using
UIApplication.delegate
not on the main processing thread.I need to review usages of that variable and to remove this warning as it may cause crashes on future versions of iOS (ie. 11.1).