2
我在012xx的xib中添加了UITableView
.and我通過點擊marker.I嘗試了viewDidLoad
我的VC-的方法UITableView在谷歌地圖上添加時不滾動添加google地圖iOS
- (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;
}
,這是我的GMSMapViewDelegate
- (BOOL)mapView:(GMSMapView *)mapView didTapMarker:(GMSMarker *)marker1
{
MYViewController *aViewController = [[MYViewController alloc] initWithNibName:@"MYViewController" bundle:nil];
[self.view addSubview:towerInfoVC.view];
return YES;
}
didTapMarker
方法,如果我想補充另一個VC爲子視圖這個VC,而不是谷歌地圖,然後滾動works.I've搜索對谷歌但沒有發現d任何幸運。請告訴我在谷歌地圖的情況下做錯了什麼。
任何人都可以幫助我 – Vikas