我正在通过Web服务将用户位置发送到服务器,在响应中我得到了发送下一个位置的时间间隔。我正在使用以下调用来使用计时器发送位置,但是当我获得不同的值时,计时器仍使用旧值。我也尝试使计时器无效以设置新值,但似乎不起作用

我有全局变量

long counter= 10;


self.timer = [NSTimer scheduledTimerWithTimeInterval:counter target:self selector:@selector(updateLocation) userInfo:nil repeats:YES];

- (void)updateLocation {
CLLocation *location = self.locationManager.location;
....
counter = 30;
}


我遵循了堆栈溢出的几篇文章,但没有使它工作。

简而言之,我需要根据响应发送更新的位置!

最佳答案

@interface MyClass()

@property (strong, nonatomic) NSTimer *timer;
@property (nonatomic) CGFloat counter;

@end

@implementation MyClass

- (void)viewDidLoad
{
    [super viewDidLoad];

    //set initial value for timer
    self.counter = 10;
    [self resetTimer];
}

//...
- (void)resetTimer
{
    [self.timer invalidate]
    self.timer = [NSTimer scheduledTimerWithTimeInterval:self.counter target:self selector:@selector(updateLocation) userInfo:nil repeats:NO];
}

- (void)updateLocation
{
    CLLocation *location = self.locationManager.location;
    //...
    self.counter = 30;
    [self resetTimer];
}
//...
- (void)dealloc
{
    //invalidate timer to avoid zombie objects  (EXC_BAD_ACCESS crash)
    [self.timer invalidate];
}
@end

关于ios - iOS如何通过scheduleTimerWithTimeInterval传递变量代客,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31088780/

10-14 20:48
查看更多