1

I am working on a camera app in which the pictures I take should store the location as to where they were taken. So maybe after a while, if I want to know where a particular picture was taken, I should click on a button, say above my photo album, which should re-direct me to a mapview. There, it should show the places where i've taken all my pictures, with an album for each place.

Any idea on how to make this work?

Kjuly
  • 34,476
  • 22
  • 104
  • 118
The X-Coder
  • 497
  • 6
  • 19

1 Answers1

2

Add MetaData to UIImage. Same metadata of UIImage can be used to know images's location.

Refer Save_Photo_to_Album_with_Metadata

Paresh Navadiya
  • 38,095
  • 11
  • 81
  • 132
  • What frameworks do i have to import to use this feature? Also where i have to enter the codes for the GPS, in viewDidLoad part? – The X-Coder Oct 19 '12 at 06:34