エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント2件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
[iPhone] 地図にピンが落ちてくるアニメーション | Sun Limited Mt.
Map.app のようにピンが上から落ちてくるアニメーションを MapKit で実装する方法です。 ピンのアノテー... Map.app のようにピンが上から落ちてくるアニメーションを MapKit で実装する方法です。 ピンのアノテーション MKPinAnnotationView の場合は簡単です。animatesDrop = YES を指定するだけです。 -(MKAnnotationView*)mapView:(MKMapView*)_mapView viewForAnnotation:(id )annotation { if (annotation == mapView.userLocation) { return nil; } MKPinAnnotationView *annotationView; NSString* identifier = @"Pin"; annotationView = (MKPinAnnotationView*)[mapView dequeueReusableAnnotati
2011/02/02 リンク