Please see this is the response of the Google Place API. How to show the Photo from the photo tag.

I have done this but not working, Please suggest me what i do to show image.
NSDictionary *temp = [[placesOutputArray objectAtIndex:indexPath.row] objectForKey:@"photo"];
NSData *data = [temp objectForKey:@"photo_reference"];
UIImage *img = [UIImage imageWithData:data];
cell.imageView.image = img;