After reading this post, Programmatically open Maps app in iOS 6
using the code below, I launch Apple Maps but I just want to open Apple Maps not send an address, place mark or directions to it.
CLLocationCoordinate2D coordinate = CLLocationCoordinate2DMake(44.180383, -75.229618);
MKPlacemark *placemark = [[MKPlacemark alloc] initWithCoordinate:coordinate
addressDictionary:nil];
MKMapItem *mapItem = [[MKMapItem alloc] initWithPlacemark:placemark];
[mapItem setName:@"Home"];
// Pass the map item to the Maps app
[mapItem openInMapsWithLaunchOptions:nil];
Any help would greatly be appreciated.