Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Add a method to clear launch screen cache #15

Open
fredpi opened this issue Dec 9, 2019 · 0 comments
Open

Add a method to clear launch screen cache #15

fredpi opened this issue Dec 9, 2019 · 0 comments

Comments

@fredpi
Copy link
Contributor

fredpi commented Dec 9, 2019

I propose to add the following extension to UIApplication, taken from this article:

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...

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant