I am having some issue with using NSURLSession in Xcode7 and Swift2. For some reason I keep getting NSURLErrordomain error but the same code is working on Xcode6 with swift 1.2.
let baseURL = NSURL(string: "https://itunes.apple.com/search?term=one%20republic")
let downloadTask = session.downloadTaskWithURL(baseURL!, completionHandler: { (location, response, error) -> Void in
if(error == nil){
let objectData = NSData(contentsOfURL: location!)
let tmpData :NSString = NSString(data: objectData!, encoding: NSUTF8StringEncoding)!
print("success")
} else {
print("Failed")
}
})
downloadTask!.resume()
It keeps giving me NSURLDomain Error Please let me know if I am missing something here.
I found the solution its because of the new app transport security.You need to add NSAppTransportSecurity key to the Info.plist as a dictionary with NSAllowsArbitraryLoads property set to true.
And it should work fine now more here NSURLSession changes in iOS9