さまざまな場所の POI ピンを表示する必要がある iPhone 用のアプリケーションを使用しています。最初の POI でデフォルトでポップアップするコールアウトを表示する必要があります。iOS6 ではなんとかできましたが、iOS7 では問題に直面しています。私は以下のコードを書いています.iOS6ではうまくいきますが、iOS7ではうまくいきません. エラーは表示されませんが、iOS7 の場合、デフォルトでマップ POI のポップアップを呼び出すことができません。
ここに私のコード部分があります:
DDAnnotation *annotation2 = [[DDAnnotation alloc] initWithCoordinate:coordinates addressDictionary:nil] ;
annotation2.title = [[arrPOIs objectAtIndex:0] objectForKey:@"Name"];
annotation2.subtitle = [[arrPOIs objectAtIndex:0] objectForKey:@"AmbassadorTagline"];
annotation2.dictionaryData = [arrPOIs objectAtIndex:0];
annotation2.strCountNumber = [NSString stringWithFormat:@"1"];
[mapView selectAnnotation:annotation2 animated:YES];
[annotation2 release];
annotation2 = nil;
これについてのアイデアや提案があれば教えてください。