许多 Cocoa 和 CocoaTouch 方法在 Objective-C 中以块的形式实现完成回调,在 Swift 中实现闭包。然而,当在游乐场尝试这些,完成从来没有被称为。例如:
// Playground - noun: a place where people can play
import Cocoa
import XCPlayground
let url = NSURL(string: "http://stackoverflow.com")
let request = NSURLRequest(URL: url)
NSURLConnection.sendAsynchronousRequest(request, queue:NSOperationQueue.currentQueue() {
response, maybeData, error in
// This block never gets called?
if let data = maybeData {
let contents = NSString(data:data, encoding:NSUTF8StringEncoding)
println(contents)
} else {
println(error.localizedDescription)
}
}
我可以看到控制台输出在我的 Playground 时间线,但 println
在我的完成块从来没有调用..。