bingoogolapple / bingoogolapple.github.io

个人主页。同时也通过 Issues 记录学习笔记
http://www.bingoogolapple.cn
86 stars 19 forks source link

iOS 加载 base64图片 #111

Open bingoogolapple opened 8 years ago

bingoogolapple commented 8 years ago
let base64Str = "data:image/png;base64,\(imageStr)".stringByReplacingOccurrencesOfString("\n", withString: "")
let url = NSURL(string: base64Str)
let imageData = NSData(contentsOfURL: url!)!
let image = UIImage(data: imageData)