gpt4 book ai didi

ios - NSTimer 没有按预期重复

转载 作者:可可西里 更新时间:2023-11-01 05:02:53 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
NSTimer timerWithTimeInterval: not working

在我的应用程序中,我有以下设置来使用 NSTimer 运行操作:

在米。文件:

@implementation MYViewController {
NSTimer *aTimer;
}

然后,当用户点击我的相关按钮时:

- (IBAction)userClick:(id)sender {
aTimer = [NSTimer timerWithTimeInterval:1.0
target:self
selector:@selector(doSomethingWithTimer:)
userInfo:nil
repeats:YES];
//[aTimer fire]; //NSTimer was fired just once.
}

我还有:

-(void)doSomethingWithTimer:(NSTimer*)timer {
NSLog(@"something to be done");
}

我希望 consul 每隔一秒就有一行说“要做某事”。定时器甚至不会被调用一次。我已经尝试使用 [aTimer fire] 触发 NSTimer,但它只触发一次并且不会像我预期的那样重复。

谁能告诉我如何处理这个问题?

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