我在https://www.reddit.com/r/swift/comments/2y1r5s/help_how_do_i_find_the_response_time_of_a/
找到了以下代码//Do this before your NSURLSession.dataTaskWithRequest var start:NSTimeInterval = NSDate.timeIntervalSinceReferenceDate() // print response time //Do this during your NSURLSession.dataTaskWithRequest var timeResponse:NSTimeInterval = NSDate.timeIntervalSinceReferenceDate() - start
如果我在特定时间多次提出请求,将无济于事。它将显示上次请求与第一个响应接收时间之间的时间差。有没有其他方法可以找到它?