46

在 swift 2 命令行工具 (main.swift) 中,我有以下内容:

import Foundation
print("yay")

var request = HTTPTask()
request.GET("http://www.stackoverflow.com", parameters: nil, completionHandler: {(response: HTTPResponse) in
    if let err = response.error {
        print("error: \(err.localizedDescription)")
        return //also notify app of failure as needed
    }
    if let data = response.responseObject as? NSData {
        let str = NSString(data: data, encoding: NSUTF8StringEncoding)
        print("response: \(str)") //prints the HTML of the page
    }
})

控制台显示“耶”然后退出(程序以退出代码结束:0),似乎没有等待请​​求完成。我将如何防止这种情况发生?

代码使用的是swiftHTTP

我想我可能需要一个NSRunLoop但没有快速的例子

4

7 回答 7

41

添加RunLoop.main.run()到文件末尾是一种选择。有关使用信号量的另一种方法的更多信息在这里

于 2015-08-11T14:23:51.437 回答
29

我意识到这是一个老问题,但这是我结束的解决方案。使用DispatchGroup

let dispatchGroup = DispatchGroup()

for someItem in items {
    dispatchGroup.enter()
    doSomeAsyncWork(item: someItem) {
        dispatchGroup.leave()
    }
}

dispatchGroup.notify(queue: DispatchQueue.main) {
    exit(EXIT_SUCCESS)
}
dispatchMain()
于 2018-06-23T04:42:38.537 回答
14

您可以dispatchMain()在 main 结束时调用。它运行 GCD 主队列调度程序并且永远不会返回,因此它将阻止主线程退出。然后你只需要在exit()准备好时显式调用退出应用程序(否则命令行应用程序将挂起)。

import Foundation

let url = URL(string:"http://www.stackoverflow.com")!
let dataTask = URLSession.shared.dataTask(with:url) { (data, response, error) in
    // handle the network response
    print("data=\(data)")
    print("response=\(response)")
    print("error=\(error)")

    // explicitly exit the program after response is handled
    exit(EXIT_SUCCESS)
}
dataTask.resume()

// Run GCD main dispatcher, this function never returns, call exit() elsewhere to quit the program or it will hang
dispatchMain()
于 2017-01-08T20:44:30.500 回答
13

不要依赖时间..你应该试试这个

let sema = DispatchSemaphore(value: 0)

let url = URL(string: "https://upload.wikimedia.org/wikipedia/commons/4/4d/Cat_November_2010-1a.jpg")!

let task = URLSession.shared.dataTask(with: url) { data, response, error in
  print("after image is downloaded")

  // signals the process to continue
  sema.signal()
}

task.resume()

// sets the process to wait
sema.wait()
于 2017-01-18T18:20:34.237 回答
5

如果您需要的不是“生产级”代码,而是一些快速实验或一段代码的试用,您可以这样做:

斯威夫特 3

//put at the end of your main file
RunLoop.main.run(until: Date(timeIntervalSinceNow: 15))  //will run your app for 15 seconds only

更多信息:https ://stackoverflow.com/a/40870157/469614


请注意,您不应依赖架构中的固定执行时间。

于 2016-11-29T16:00:02.670 回答
5

斯威夫特 4:RunLoop.main.run()

在文件的末尾

于 2018-12-16T00:58:48.723 回答
0
// Step 1: Add isDone global flag

var isDone = false
// Step 2: Set isDone to true in callback

request.GET(...) {
    ...
    isDone = true
}

// Step 3: Add waiting block at the end of code

while(!isDone) {
    // run your code for 0.1 second
    RunLoop.main.run(until: Date(timeIntervalSinceNow: 0.1))
}
于 2020-09-23T07:11:11.320 回答