在 NSTimers 中编写代码而不是选择器?

发布于 2024-11-09 11:43:50 字数 390 浏览 0 评论 0原文

有没有办法编写代码而不是将选择器设置为在 NSTimer 中调用的方法? 如果我想在 5 秒后打印 hello world 我可以这样做。

[NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(helloWorld:) userInfo:nil repeats:NO];

并具有此功能

-(void)helloWorld:(NSTimer*)aTimer {
    NSLog(@"Hello World!");
}

但是,不必为每个计时器编写函数,是否可以在我创建计时器的同一行中添加 NSLog(@"Hello World!") ?

Is there anyway to write code instead of setting a selector to method to call in NSTimer?
If i want to print hello world after 5 sec i can do it like this.

[NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(helloWorld:) userInfo:nil repeats:NO];

and have this function

-(void)helloWorld:(NSTimer*)aTimer {
    NSLog(@"Hello World!");
}

But instead of writeing functions for every timer you have is it possible to add NSLog(@"Hello World!") in the same line as where i create the timer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

断舍离 2024-11-16 11:43:50

有些方法允许您将代码块作为参数传递。不幸的是,NSTimer 不支持此功能。

Some methods allow you to pass a code block as a parameter. Unfortunately this isn't supported for NSTimer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文