如何在一段时间内运行任务?我原以为这个任务是刷新用户的当前位置。这可能在ios5中吗?
thanx for reading
答案 0 :(得分:2)
如果要刷新当前位置,请使用CLLocationManager并请求重要的位置更改。这样可以节省电池寿命。
否则,你的问题没有多大意义。
答案 1 :(得分:0)
以下代码可能有助于选择方法重复该方法。
[self performSelector:@selector(gotoshop) withObject:nashville afterDelay:1.0];
和方法是
-(void)gotoshop{
// your code goes here..
}