0

我的 awakeWithContext 中有一个工作的 MKMapSnapshotter,想为我的 imageView 设置它的图像。

问题是,MKMapSnapshotter 速度很慢并且图像不会被设置。仅一两秒后,它就会创建快照图像。

override func awakeWithContext(context: AnyObject?) {
    super.awakeWithContext(context)

    var finalImage = UIImage()
    var snapshotterEnd = MKMapSnapshotter()
    snapshotterEnd.startWithCompletionHandler(){snapshot, error in

        finalImage = snapshot.image
    }
    imageView.setImage(finalImage)
}

我怎样才能解决这个问题?

4

1 回答 1

2

您需要确保完成处理程序本身将设置图像。

snapshotterEnd.startWithCompletionHandler() { snapshot, error in
    imageView.setImage(snapshot.image)
}

完成块被记录为在主线程上运行,因此您不需要在dispatch_async那里运行它。

于 2015-04-10T11:27:07.687 回答