Hello,
I want to post some binary data to a website. The file can be somewhat large so I convert it to base64 and composite an url and post the url to the website with NSString stringWithContentsOfURL.
This works but it's really much slower than I think it should be. In part because my servers has a 2048 character url limit. Is there a better way to post the data?
thanks!