如何循环 NSThread?

发布于 2024-09-05 20:57:10 字数 167 浏览 3 评论 0原文

我很想知道你是否可以为 iphone sdk 循环 NSThread。我了解到,我可以使用 NSThreads 在后台运行操作,而不是使用在主 UI 上运行的 NSTimers。我的大多数 NSTimers 的“repeats:”为 YES,因此我需要知道 NSThreads 是否可以循环。

谢谢 凯文

I am curious to know if you can loop an NSThread for the iphone sdk. I have learned that instead of using NSTimers which do run off of the main UI, I can use NSThreads to run actions in the background. Most of my NSTimers have the "repeats:" to YES, thus I need to know if NSThreads can be looped.

Thanks
Kevin

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

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

发布评论

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

评论(1

提笔书几行 2024-09-12 20:57:10
- (void) loop {
    while (!finished) { … };
}

- (void) startThreadedLoop {
    finished = NO;
    [self performSelectorInBackground:@selector(loop)];
}
- (void) loop {
    while (!finished) { … };
}

- (void) startThreadedLoop {
    finished = NO;
    [self performSelectorInBackground:@selector(loop)];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文