I do not know if this is possible, but I think it is possible, and I do not know how to do it. I just want to download an image from parse.com, how do you retrieve objects from parse.com. Should I do this the same way I get strings from parse.com? I just found how to save images when parsing, but not how to get them. I would be happy if someone could show me a link to do this or sample code.
I have already created a line that is extracted from parsing:
PFQuery *query = [PFQuery queryWithClassName:@"app"]; [query getObjectInBackgroundWithId:@"ID" block:^(PFObject *textdu, NSError *error) { if (!error) { UIFont *welcomeLabelFont = [UIFont boldSystemFontOfSize:17]; welcomeLabel.text = [textdu objectForKey:@"ueberschriftnews"]; welcomeLabel.font = welcomeLabelFont; welcomeLabel.textColor = [UIColor whiteColor]; welcomeLabel.textAlignment = NSTextAlignmentCenter; welcomeLabel.backgroundColor = [UIColor clearColor]; welcomeLabel.shadowColor = [UIColor blackColor]; welcomeLabel.shadowOffset = CGSizeMake(0, 1); [contentView addSubview:welcomeLabel];
My session setup:

Thanks.
source share