我是快速编码的新手,因此我的大多数代码都是“这就是我在互联网上找到它的状态”。
我正在尝试发送HTTP GET请求然后使用它。我正在使用NSURLConnection
。我的Xcode项目中有两个swift文件(它是一个快速的控制台项目,而不是游乐场),一个是主要文件,第二个包含我想用于授权的类:
import Foundation
class Remote: NSObject, NSURLConnectionDelegate {
var data = NSMutableData()
func connect() {
var url = NSURL(string: "https://www.google.com")
var request = NSURLRequest(URL: url!)
NSLog("Is%@ main thread", NSThread.isMainThread() ? "" : " NOT");
var conn = NSURLConnection(request: request, delegate: self, startImmediately: false)
conn?.scheduleInRunLoop(NSRunLoop.mainRunLoop(), forMode: NSDefaultRunLoopMode)
conn?.start()
sleep(2)
}
func connection(didReceiveResponse: NSURLConnection!, didReceiveResponse response: NSURLResponse!) {
println("didReceiveResponse")
}
func connection(connection: NSURLConnection!, didReceiveData conData: NSData!) {
println("didReceiveData")
}
func connectionDidFinishLoading(connection: NSURLConnection!) {
println("DidFinishLoading")
}
deinit {
println("deiniting")
}
}
这是我主要的快速代码:
import Foundation
var xxx = Remote()
xxx.connect()
sleep(10)
sleep(2)
当我在委托函数中的每个println
上设置断点时,它们永远不会被击中。执行是根据NSLog
输出从主线程完成的。
在调试器中我可以看到数据是通过网络发送和接收的,但我从来没有得到任何输出。我在这里看过很多类似的问题,但没有任何帮助。
我做错了什么?
答案 0 :(得分:0)
正如 Martin R 建议我在启动 NSURLConnection 后立即将正确的NSRunLoop添加到我的代码中:
self.shouldKeepRunning = true
let theRL = NSRunLoop.currentRunLoop()
while self.shouldKeepRunning && theRL.runMode(NSDefaultRunLoopMode, beforeDate: NSDate(timeInterval: 1.0, sinceDate: NSDate())) { }
shouldKeepRunning 是我的类中定义的bool变量,在委托函数 connectionDidFinishLoading 中设置为false,所以