Tag: xcode 6.2

如何在快速编码string到base64

我想将一个string转换为一个base64。 我在几个地方find了同样的答案,但是它不能很快地工作。 我正在使用Xcode 6.2。 我相信答案可能是以前的Xcode而不是Xcode 6.2。 有人可以请指导我在Xcode 6.2中做到这一点? 我find的答案是这样的。 但在Xcode 6.2中不起作用 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 […]