Get url from images stored in Parse

How can I get URL from images stored in Parse?

I created an application where I can store images in Parse (works great). But how do I get the url from the image stored in Parse so that I can show it in a web browser by typing the url?

Is it possible to see the URL of the images stored in Parse anywhere?

I think something like this:

https://www.parse.com/apps/ClassName/collections#class/Photo/CzEgPXalzM

+3


source to share


1 answer


You can get the url of the image from the object PFFile

containing the image like this:



NSString *urlString = yourImageFileFromParse.url;

      

0


source







All Articles