I want to use Google Maps on my iPhone application.
I am finding it difficult to get the xml parser code for it though.
The SDK includes the MapKit framework. See this google tutorial to get started.
Add the mapKit Framework to your framework folder.
In your viewController.h file add code:-
#import <MapKit/MapKit.h>
In your viewController.m file:-
[UIApplication sharedApplication openURL:[[NSURL alloc] initWithString: @"http://maps.google.com/maps?q=London"]]
精彩评论