ฉันต้องการแปลงสตริงเป็น Base64 ฉันพบคำตอบในหลายที่ แต่มันใช้ไม่ได้อีกต่อไปใน Swift ฉันใช้ Xcode 6.2 ฉันเชื่อว่าคำตอบอาจใช้ได้กับ Xcode เวอร์ชันก่อนหน้าไม่ใช่ Xcode 6.2
ใครช่วยแนะนำฉันให้ทำใน Xcode 6.2 ได้ไหม
คำตอบที่ฉันพบคือสิ่งนี้ แต่ใช้ไม่ได้ใน Xcode เวอร์ชันของฉัน:
var str = "iOS Developer Tips encoded in Base64"
println("Original: \(str)")
// UTF 8 str from original
// NSData! type returned (optional)
let utf8str = str.dataUsingEncoding(NSUTF8StringEncoding)
// Base64 encode UTF 8 string
// fromRaw(0) is equivalent to objc 'base64EncodedStringWithOptions:0'
// Notice the unwrapping given the NSData! optional
// NSString! returned (optional)
let base64Encoded = utf8str.base64EncodedStringWithOptions(NSDataBase64EncodingOptions.fromRaw(0)!)
println("Encoded: \(base64Encoded)")
// Base64 Decode (go back the other way)
// Notice the unwrapping given the NSString! optional
// NSData returned
let data = NSData(base64EncodedString: base64Encoded, options: NSDataBase64DecodingOptions.fromRaw(0)!)
// Convert back to a string
let base64Decoded = NSString(data: data, encoding: NSUTF8StringEncoding)
println("Decoded: \(base64Decoded)")
อ้างอิง: http://iosdevelopertips.com/swift-code/base64-encode-decode-swift.html