我确定我需要我的按钮操作 (findMe) 成为 viewDidAppear 的一部分,并且不能将其作为单独的 IBAction,因为它有显示用户位置错误。
A:这甚至可能吗?
B:这样做有意义吗?
C:它会是什么样子?
我知道错误的当前代码如下所示:
-(void)viewDidAppear:(BOOL)animated
{
if (findMe == YES)
{
self.mapView.showsUserLocation = YES;
[mapView setCenterCoordinate:mapView.userLocation.coordinate animated:YES];
}
}
谢谢!