Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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 join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant