I am getting an "uncommon" error when I try to download a PFFile data in background. I have this code :
pfimage.getDataInBackgroundWithBlock {
(imgData:NSData?,error: NSError?) -> Void in
cell.imagen.image = UIImage(data: imgData!)
}
The weird thing about this, is that I am getting an error in the simulator and in my Ipad, but I am not getting any errors in my iphone.
This is the error:
2016-03-26 00:48:32.769 App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.
I dont understand why this is happening since my connection to the parse server is in https:...., besides why is only happening in my ipad and simulators ( both ipad and iphone are in the same ios version )
I know many answers just say to add the exception in the plist but isnt there any other way?