TagOverlayAnimation

Can we create flashing red/blue circle around user location in mapview in iPhone ?

C

Yes we can create with a simple UIView animation & few images. 1) Add the MapView MKMapView *mapView = [[MKMapView alloc] initWithFrame:yourFrameFrame]; mapView.mapType = MKMapTypeStandard; mapView.delegate = self; [mapView setShowsUserLocation:YES]; [self.view addSubview:mapView];   2) In viewForAnnotation method – (MKAnnotationView *)mapView:(MKMapView *)mapview...

Category