2

我有一个 iPhone 应用程序,它应该在地图上显示无限数量的用户的位置。

我想要这样做的方式是每 5-8 秒向服务器发送一个请求,并获得用户的最佳位置。此外,每个用户每 5-8 秒自动将他的位置发送到服务器。

是否有另一种或更有价值的方法来做到这一点?

4

1 回答 1

1

您可以NSTimer用于此任务,这是最好的方法,

[NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(sendYourRequest:) userInfo:nil repeats:YES];
于 2012-12-19T07:42:04.293 回答