I have a GMSMapView inside a SWTableViewCell, i've disabled the scrolling but apparently it doesn't inherit the scrolling (or other gestures) of the table/cell. Scrolling and swiping the cell works in all the other parts of the cell but not on the GMSMapView.
GMSMapView *map = [GMSMapView mapWithFrame: CGRectMake(0, 0, self.view.bounds.size.width, cell.mapView.bounds.size.height) camera:camera];
map.settings.compassButton = NO;
map.settings.myLocationButton = NO;
map.myLocationEnabled = NO;
map.settings.scrollGestures = NO;
map.settings.zoomGestures = YES;
[cell.mapView addSubview:map];
How can i inherit on the map the table's scrolling and swiping gestures?