我现在想弄清楚,我应该如何使用注释按钮切换到另一个mapView。我正在开发的应用程序使用 MapBox - 地图。我检查了他们提供的示例,但是始终通过选项卡栏以编程方式在两个地图之间切换(我不想使用这种情况)。我正在使用情节提要,我理解它很好,应该如何在界面构建器中制作 segue,但我认为我没有使用地图视图上的编程集成按钮进行管理。我在两个头文件中都启动了“id”,并在 Identity Inspector 中声明了它们。
这是代码的一部分,我在主视图控制器 - ViewController 中使用注释实现了 RMMMapView,它运行良好:
- (void)viewDidLoad{
[super viewDidLoad];
RMMapBoxSource *onlineSource = [[RMMapBoxSource alloc] initWithMapID:(([[UIScreen mainScreen] scale] > 1.0) ? kRetinaMapID : kNormalMapID)];
_mapView = [[RMMapView alloc] initWithFrame:self.view.bounds andTilesource:onlineSource];
_mapView.tileSource = [[RMMapBoxSource alloc] initWithMapID:(([[UIScreen mainScreen] scale] > 1.0) ? kRetinaMapID : kNormalMapID)];
_mapView.centerCoordinate = CLLocationCoordinate2DMake(0,0);
_mapView.adjustTilesForRetinaDisplay = YES;
_mapView.zoom = 4;
_mapView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
[self.view addSubview:_mapView];
_mapView.showsUserLocation = YES;
[_mapView setConstraintsSouthWest:[_mapView.tileSource latitudeLongitudeBoundingBox].southWest
northEast:[_mapView.tileSource latitudeLongitudeBoundingBox].northEast];
RMPointAnnotation *annotation = [[RMPointAnnotation alloc] initWithMapView:_mapView
coordinate:_mapView.centerCoordinate andTitle:@"Hello, world!"];
[_mapView addAnnotation:annotation];
}
这是我尝试从 ViewController - 主 ViewController 调用 LowContentMap viewController 的部分:
- (void) prepareForSegue:(UIStoryboardSegue *) segue sender:(id) sender {
if ([segue.identifier isEqualToString:@"Hello, world!"]) {
//LowContentMap *lowContentMap = segue.destinationViewController;
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:[NSBundle mainBundle]];
LowContentMap *lowContentMap = [storyboard instantiateViewControllerWithIdentifier:@"lowContentMap"];
lowContentMap.lcm = _vc;
}}
这是代码的一部分,应该填写:
- (void)mapView:(RMMapView *)mapView annotationView:(RMPointAnnotation *)annotation calloutAccessoryControlTapped:(UIControl *)control{
[self performSegueWithIdentifier:@"ShowSomeViewController" sender:annotation];
}
如果有人尝试解决问题,那就太好了。我关注了 Noa 和 Kronos 之间的讨论: 使用 segue 设置细节视图控制器, 但我仍然认为,带有 'id' 的部分是我做错的事情。提前致谢。