Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NSURLConnection finished with error - code -1100

What is NSURLConnection finished with error - code -1100 ? I am getting this error while uploading image from camera in iOS build. I am working in ionic 1. How this issue can be fixed?

like image 796
Simerjit Parmar Avatar asked Nov 13 '17 17:11

Simerjit Parmar


1 Answers

1100 - NSURLErrorFileDoesNotExist

Your code tries to retrieve something at wrong url. Server says the file doesn't exist.

like image 128
Vyacheslav Avatar answered Nov 20 '22 18:11

Vyacheslav