This commit is contained in:
湖北秦九 2025-11-07 10:26:42 +08:00
commit 3ea379ca11

View File

@ -73,7 +73,7 @@ class APInAppPurchseVC: NSViewController {
let currentDate = dateFormatter.string(from: Date())
let mySave = NSSavePanel()
mySave.allowedFileTypes = ["csv"]
mySave.nameFieldStringValue = "内购列表" + currentDate + currentApp!.appName.replacingOccurrences(of: " ", with: "-")
mySave.nameFieldStringValue = currentApp!.appName.replacingOccurrences(of: " ", with: "-") + "内购列表" + currentDate
mySave.begin { (result) -> Void in
if result == .OK {
let filePath = mySave.url