2
我翻譯一個Android應用程序到iOS與SWIFT 3.我的問題是使用Java代碼的下一個塊:如何在swift 3中從base64獲取一個字節數組?
String b64 = "KJT-AAAhtAvQ";
byte[] bytesCodigo = Base64.decode(b64, Base64.URL_SAFE);
System.out.Println(bytesCodigo.length) // 9
它如何將是迅速?
由於
你有沒有看到這個http://stackoverflow.com/questions/29365145/how-to-encode-string-to-base64-in-swift? – Dribbler
您通常不需要字節數組。這就是'數據'是*的* – Alexander