fix
杨锴
2025-02-18 c5e51c0ec3cbf1016f3bfbd58b0f0a004aaa9900
XQMuse/AppDelegate.swift
@@ -15,7 +15,6 @@
            func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        removeLaunchScreenCacheIfNeeded()
        WeChatTools.register(appid: WeChatAPPID, link: "https://app.xqzhihui.com/app/")
                        return true
            }
@@ -72,19 +71,6 @@
    func onResp(_ resp: BaseResp) {
    }
    func removeLaunchScreenCacheIfNeeded() {
        let filePath = NSHomeDirectory() + "/Library/SplashBoard"
        if FileManager.default.fileExists(atPath: filePath) {
            do {
                try FileManager.default.removeItem(atPath: filePath)
                print("清除LaunchScreen缓存成功")
            } catch {
                print("清除LaunchScreen缓存失败")
            }
        }
    }
}