我有我的应用程序使用类似于以下内容在 iOS6 上启动 Maps 应用程序:
MKPlacemark* place = [[MKPlacemark alloc] initWithCoordinate: latlong addressDictionary: nil];
MKMapItem* destination = [[MKMapItem alloc] initWithPlacemark: place];
destination.name = @"Name Here!";
NSArray* items = [[NSArray alloc] initWithObjects: destination, nil];
NSDictionary* options = [[NSDictionary alloc] initWithObjectsAndKeys:
MKLaunchOptionsDirectionsModeDriving,
MKLaunchOptionsDirectionsModeKey, nil];
[MKMapItem openMapsWithItems: items launchOptions: options];
一旦我在地图应用程序中,是否有添加按钮或以其他方式返回到我的应用程序?我想返回我的应用程序而不点击 iPhone 主页按钮并再次单击我的应用程序图标。
谢谢!