I\'m writing an application that allows the users to take and store images on Parse. Thus far I\'ve managed to accomplish saving the image array to Parse by using the follo
All the above solutions are correct, but want to add one another way to have support of Image Caching of SDWebImage or any library like that.
On Successful completion you will be have PFFile, whose property "url" will return you actuall URL of Image where it is saved. You can use that to load image. Using this approach I was able to have Image Cacheing based on key as URL.
...
NSString *strUrl = pfFileObject.url;
...
...
[img sd_setImageWithURL:[NSURL URLWithString:strUrl]];