次のようなものを使用して、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 のホーム ボタンを押してアプリのアイコンをもう一度クリックせずに、自分のアプリに戻りたいです。
ありがとう!