I propose to add the following `extension` to `UIApplication`, taken from [this article](https://rambo.codes/ios/quick-tip/2019/12/09/clearing-your-apps-launch-screen-cache-on-ios.html): ``` public extension UIApplication { func clearLaunchScreenCache() { do { try FileManager.default.removeItem(atPath: NSHomeDirectory()+"/Library/SplashBoard") } catch { print("Failed to delete launch screen cache: \(error)") } } } ``` While this extension is only appropriate in debug environments, I think it's still a good fit for `HandyUIKit`...
I propose to add the following
extensiontoUIApplication, taken from this article:While this extension is only appropriate in debug environments, I think it's still a good fit for
HandyUIKit...