如何使iOS地圖加Annotation有從空中掉下來的效果

來源:互聯網
上載者:User

分類: iPhone Tutorial 2011-07-12 12:10 60人閱讀 評論(0) 收藏 舉報

玩過google app的都知道,我們在地圖上加一個目的地的時候,annotationview是從上掉下來的,如何?這樣的效果?經過實戰,我找到有兩種方法可以完成這樣的效果。

第一種是實現MKMapViewDelegate的一個方法,然後自已實現下落的動畫效果,代碼如下:

view plain
  1. - (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views {   
  2.     MKAnnotationView *aV;   
  3.     for (aV in views) {  
  4.         CGRect endFrame = aV.frame;  
  5.           
  6.         aV.frame = CGRectMake(aV.frame.origin.x, aV.frame.origin.y - 230.0, aV.frame.size.width, aV.frame.size.height);  
  7.           
  8.         [UIView beginAnimations:nil context:NULL];  
  9.         [UIView setAnimationDuration:0.45];  
  10.         [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];  
  11.         [aV setFrame:endFrame];  
  12.         [UIView commitAnimations];  
  13.           
  14.     }  
  15. }  

第二種方法很簡單,只需要設定一個annotationview的屬性值,也是在MKMapViewDelegate的一個方法中實現,代碼如下:view plain

  1. - (MKAnnotationView *)mapView:(MKMapView *)mV viewForAnnotation:(id <MKAnnotation>)annotation  
  2. {  
  3.     if (annotation == mV.userLocation) {  
  4.         return nil;  
  5.     }  
  6.     MKPinAnnotationView *pinView = nil;   
  7.     static NSString *defaultPinID = @"custom pin";  
  8.     pinView = (MKPinAnnotationView *)[mV dequeueReusableAnnotationViewWithIdentifier:defaultPinID];  
  9.     if ( pinView == nil )  
  10.     {  
  11.         pinView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:defaultPinID] autorelease];  
  12.         [pinView setDraggable:YES];  
  13.           
  14.     }  
  15.     pinView.pinColor = MKPinAnnotationColorRed;  
  16.       
  17.     pinView.canShowCallout = YES;  
  18.     pinView.animatesDrop = YES;  
  19.       
  20.     return pinView;  
  21. }  

注意,就是

view plain
  1. pinView.animatesDrop = YES;  

起的作用。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.