我添加了一个UITableView
添加到UIViewController
的xib中。我将这个VC添加为谷歌地图的子视图,点击标记。我已经尝试了{{{ 1}}我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
如果我将这个VC添加到另一个VC作为子视图而不是谷歌地图然后滚动工作。我搜索了谷歌但没有找到任何运气。请告诉我在谷歌地图的情况下我做错了。