0
我應該將「../~~~~.pdf.2.3"(.zip,.xls etc ...」等下載網址替換爲「../~~~.pdf」swift3 - 替換url
如果我使用url.lastPathComponent,返回nil。
所以我喜歡這段代碼。
let fileLastPathComponents = remoteFileUrl.absoluteString.components(separatedBy: "/")
let lastPathComponent = fileLastPathComponents[fileLastPathComponents.count - 1]
let fileName = lastPathComponent.components(separatedBy: ".")
let fileNameStr = "\(fileName[0]).\(fileName[1])"
它的工作,但removingPercentEncoding沒有奏效(返程無)
我如何幫助編碼後的文件名?
我不能改變這個服務器
謝謝
什麼結果你在這裏'lastPathComponent' –
lastPathComponent返回nil太 –
你這裏得到的結果'remoteFileUrl.absoluteString' –