Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

Response of the Google Place API

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;
share|improve this question

closed as not a real question by Marcelo, Janak Nirmal, Mehul, Nimit Dudani, Ram kiran Nov 27 '12 at 5:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

the reference isnt NSData / bytes of an image AFAIK it is a reference that has to be resolved by calling another URL

see : Google place Api PlaceDetails Photo Reference

share|improve this answer
can you give me one example how to do that? i need help on this. – Hardik Shah Nov 26 '12 at 12:39
when u fetch the image using the xml then use the icon tag for use the image – Rushabh Nov 26 '12 at 13:01
No i want to fetch the <photo> tag do have answer for that? – Hardik Shah Nov 26 '12 at 13:02

Not the answer you're looking for? Browse other questions tagged or ask your own question.