Код: Выделить всё
func openVideo() {
let request = NSMutableURLRequest(URL: NSURL(string: "http://uapi-f1.picovico.com/v2.1/v/nMirP/ArwenUndomiel.mp4")!)
let session = NSURLSession.sharedSession()
request.HTTPMethod = "GET"
let task = session.dataTaskWithRequest(request, completionHandler: {(data, response, error) -> Void in
print(response)
})
task!.resume()
}
Подробнее здесь: https://stackoverflow.com/questions/315 ... t-response
Мобильная версия