gpt4 book ai didi

iphone - MKMapView 问题

转载 作者:行者123 更新时间:2023-11-29 13:37:29 25 4
gpt4 key购买 nike

我在尝试使用 MKMapView 时遇到了问题。这是我第一次尝试使用其中一个,但我一直无法弄清楚如何使用它。这是我用来尝试让它工作但都不起作用的两段不同的示例代码:

mapView = [[MKMapView alloc] initWithFrame:CGRectMake( 0, 0, 320, 150 )];
MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance( CLLocationCoordinate2DMake( latitude, longitude ), metersPerMile*0.5, metersPerMile*0.5 );
MKCoordinateRegion adjustedRegion = [mapView regionThatFits:region];
[mapView setRegion:adjustedRegion];

mapView = [[MKMapView alloc] initWithFrame:CGRectMake( 0, 0, 320, 150 )];
MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance( CLLocationCoordinate2DMake( latitude, longitude ), metersPerMile*0.5, metersPerMile*0.5 );
[mapView setRegion:region];

mapView = [[MKMapView alloc] initWithFrame:CGRectMake( 0, 0, 320, 150 )];
[self.mapView setRegion:MKCoordinateRegionMake(CLLocationCoordinate2DMake( latitude, longitude ), MKCoordinateSpanMake( 0.01, 0.01 ))];

所有这些代码片段对 MKMapView 完全没有任何作用。每当 View 结束加载时,它什么都不做,我只是看着整个北美,这不是很有帮助。

如果有人能帮我解决这个问题,我将不胜感激。

最佳答案

你还没有将 map 添加到你的 View ..就像[self.view addSubView:mapView];

关于iphone - MKMapView 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10169795/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com