我在Playground玩游戏试图更好地理解异步图像下载和设置。
我正在使用NSURLSession DataTask,我的图像数据非常好 - 我可以使用Playground的快速查看来确认这一点。
我也使用XCPlayground框架将页面设置为需要无限期执行,而currentPage的liveView是目标imageView。
然而,仍然缺少某些内容,并且实时视图未正确更新。有任何想法吗?我想要做的是归结为以下代码。您可以在屏幕截图中看到游乐场的状态:
import UIKit
import XCPlayground
XCPlaygroundPage.currentPage.needsIndefiniteExecution = true
let someImageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 256, height: 256))
let session = NSURLSession(configuration: NSURLSessionConfiguration.defaultSessionConfiguration())
session.dataTaskWithRequest(NSURLRequest(URL: NSURL(string: "http://www.stridesapp.com/strides-icon.png")!))
{
data, response, error in
if let data = data
{
print(data)
someImageView.image = UIImage(data: data)
}
}.resume()
XCPlaygroundPage.currentPage.liveView = someImageView
答案 0 :(得分:1)
鉴于NSURLSession
不会在主队列上运行其完成处理程序,您应该自己将视图的更新分派给主队列:
import UIKit
import XCPlayground
XCPlaygroundPage.currentPage.needsIndefiniteExecution = true
let someImageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 256, height: 256))
let session = NSURLSession(configuration: NSURLSessionConfiguration.defaultSessionConfiguration())
session.dataTaskWithRequest(NSURLRequest(URL: NSURL(string: "http://www.stridesapp.com/strides-icon.png")!)) { data, response, error in
if let data = data {
print(data)
dispatch_async(dispatch_get_main_queue()) {
someImageView.image = UIImage(data: data)
}
}
}.resume()
XCPlaygroundPage.currentPage.liveView = someImageView
因此: