gpt4 book ai didi

iphone - 试图在 MapView 中模拟一条路线

转载 作者:可可西里 更新时间:2023-11-01 04:47:55 26 4
gpt4 key购买 nike

我有一个从文件中解析出的 CLLocation 对象数组。我想模拟用户沿着那条路线移动,我已经实现了这个:

for (CLLocation *loc in simulatedLocs) {
[self moveUser:loc];
sleep(1);
}

这是在循环中调用的方法:

- (void)moveUser:(CLLocation*)newLoc
{
CLLocationCoordinate2D coords;
coords.latitude = newLoc.coordinate.latitude;
coords.longitude = newLoc.coordinate.longitude;
CustomAnnotation *annotation = [[CustomAnnotation alloc] initWithCoordinate:coords];
annotation.title = @"User";

// To remove the previous location icon
NSArray *existingpoints = self.mapView.annotations;
if ([existingpoints count] > 0) {
for (CustomAnnotation *annotation in existingpoints) {
if ([annotation.title isEqualToString:@"User"]) {
[self.mapView removeAnnotation:annotation];
break;
}
}
}

MKCoordinateRegion region = { coords, {0.1, 0.1} };
[self.mapView setRegion:region animated:NO];
[self.mapView addAnnotation: annotation];
[self.mapView setCenterCoordinate:newLoc.coordinate animated:NO];
}

但在运行 iPhone 模拟器时,只有数组中的最后一个位置及其区域显示在 mapView 中。我想模拟用户每 1 秒“移动”一次,我该怎么做?

谢谢!

最佳答案

在每次迭代时使用 sleep 一次性遍历所有位置是行不通的,因为 UI 将被阻塞,直到循环所在的方法完成。

相反,计划为每个位置单独调用 moveUser 方法,这样 UI 就不会在整个序列中被阻塞。可以使用 NSTimer 或可能更简单、更灵活的方法(例如 performSelector:withObject:afterDelay: 方法)来完成调度。

保留一个索引 ivar 以跟踪每次调用 moveUser 时要移动到的位置。

例如:

//instead of the loop, initialize and begin the first move...
slIndex = 0; //this is an int ivar indicating which location to move to next
[self manageUserMove]; //a helper method

-(void)manageUserMove
{
CLLocation *newLoc = [simulatedLocs objectAtIndex:slIndex];

[self moveUser:newLoc];

if (slIndex < (simulatedLocs.count-1))
{
slIndex++;
[self performSelector:@selector(manageUserMove) withObject:nil afterDelay:1.0];
}
}

现有的 moveUser: 方法不必更改。


请注意,如果不是每次都重新删除和添加注释,而是在开始时添加一次并在每次“移动”时更改其 coordinate 属性,则可以简化用户体验和代码。

关于iphone - 试图在 MapView 中模拟一条路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12918453/

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