UITableView
..のxibに追加を追加し、マーカーをUIViewController
クリックして、このVCをGoogleマップのサブビューとして追加しています.VCのviewDidLoad
方法で試しました-
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
aTableView.scrollEnabled = YES;
aTableView.bounces = YES;
aTableView.userInteractionEnabled=YES;
aTableView.delegate=self;
aTableView.dataSource = self;
}
これが私のdidTapMarker
方法です GMSMapViewDelegate
- (BOOL)mapView:(GMSMapView *)mapView didTapMarker:(GMSMarker *)marker1
{
MYViewController *aViewController = [[MYViewController alloc] initWithNibName:@"MYViewController" bundle:nil];
[self.view addSubview:towerInfoVC.view];
return YES;
}
この VC を別の VC に Google マップの代わりにサブビューとして追加すると、スクロールが機能します。Google で検索しましたが、うまくいきませんでした。