我在我的代碼中有一組圖像[UIImage],但我想將它們轉換爲base64 - 我不能! - 我發現類似的問題,但是當我用自己的答案,我收到致命錯誤如何將數組的UIImage轉換爲swift 3中的base64數組?
for i in 0...tinyViewController.imageUpload.count - 1 {
print(i)
let imageData = UIImageJPEGRepresentation(tinyViewController.imageUpload[i] , 1)
let base64String = (imageData! as Data).base64EncodedString(options: NSData.Base64EncodingOptions(rawValue: 0))
print(base64String)
}
你可以張貼錯誤? –
致命錯誤:意外地發現零,而解包一個可選值 (lldb) –