I would like to save some images in Parse Server and like to pull it down into my iOS app. Any idea how to do it?
Use a PFImageView where you'd normally use a UIImageView. Give it the PFFile for the image you wish to display, then call loadInBackground.
PFFile *imageFile = [pfObject objectForKey:@"image"];
PFImageView *imageView = [[PFImageView alloc] init];
imageView.file = imageFile;
[imageView loadInBackground];