如何在Playground中下载图像后更新UIImageView

时间:2016-02-17 04:49:47

标签: ios uiimageview xcplayground

我在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

The state of the Playground

1 个答案:

答案 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

因此:

live view