Guest User

Untitled

a guest
Jul 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
  2.  
  3. UIButton *btn = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
  4. [btn addTarget:self action:@selector(pinTouched:) forControlEvents:UIControlEventTouchUpInside];
  5.  
  6. -(void)pinTouched:(UIButton *)sender
  7. {
  8. myView.transform = CGAffineTransformMakeScale(.01, .01);
  9. [self.view addSubview:myView];
  10. }
Add Comment
Please, Sign In to add comment