When I tap a marker,I want map to pop a custom infowindow,rather than a default infowindow.The custom infowindow has a button on it,but when I clicked the button.The button does not triggered!!! I need your help ,help,help......
-(UIView*)mapView:(GMSMapView *)mapView markerInfoWindow:(GMSMarker *)marker
{
NSLog(@"sssssssss");
self.iCallOutView.nameLabel.text=marker.title;
self.iCallOutView.coordinate=marker.position;
return self.iCallOutView;
}