-1

I can't seem to find a decent tutorial to use a map in my iOS 6 app. I got the part of adding the MapView, but I want to add pins in custom locations. I want my pin to have a title, a subtitle and a picture on the left. I'm not sure if I need a custom pin of not for that. I also want a detail disclosure indicator to segue to another page. Should be that complicated, but I don't know where to start. Help please!

anthoprotic
  • 827
  • 2
  • 13
  • 24

1 Answers1

7

There you go...a pretty good iOS6 Tutorial with the new MapKit. Helped me a lot. Enjoy...

http://www.raywenderlich.com/21365/introduction-to-mapkit-in-ios-6-tutorial

d3p0nit
  • 442
  • 5
  • 16
  • Thanks, but it doesn't explain how to fit a large title in the box. – anthoprotic Oct 23 '12 at 13:02
  • Well, my frame is already the same width as my screen, so I don't think I can make it larger and anyway I'm not sure how to change the width. Maybe the solution is to change the font of the MKPinAnnotationView, but I don't how. – anthoprotic Oct 23 '12 at 13:53
  • you can set and change the properties for UIFont and UILabel in a subclass of MKAnnotationView. – d3p0nit Oct 24 '12 at 10:04