gpt4 book ai didi

IOS 如何传递变量 valet scheduledTimerWithTimeInterval

转载 作者:行者123 更新时间:2023-11-28 21:43:45 25 4
gpt4 key购买 nike

我通过 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;
}

我关注了 stack overflow 中的几篇文章,但没有成功。

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

最佳答案

@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 如何传递变量 valet scheduledTimerWithTimeInterval,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31088780/

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