gpt4 book ai didi

ios - 了解 NSRunLoop

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:40:24 27 4
gpt4 key购买 nike

谁能解释一下什么是NSRunLoop?据我所知,NSRunLoop 是与 NSThread 相关的东西,对吗?所以假设我创建了一个像

这样的线程
NSThread* th=[[NSThread alloc] initWithTarget:self selector:@selector(someMethod) object:nil];
[th start];

-(void) someMethod
{
NSLog(@"operation");
}

那么在这个 Thread 完成他的工作之后,对吗?为什么要使用 RunLoops 或者在哪里使用?从 Apple 文档中我已经阅读了一些内容,但对我来说还不清楚,所以请尽可能简单地解释

最佳答案

运行循环是一种抽象,它(除其他外)提供了一种处理系统输入源(套接字、端口、文件、键盘、鼠标、计时器等)的机制。

每个 NSThread 都有自己的运行循环,可以通过 currentRunLoop 方法访问。

一般来说,您不需要直接访问运行循环,尽管有一些(网络)组件可能允许您指定它们将用于 I/O 处理的运行循环。

给定线程的运行循环将等待,直到它的一个或多个输入源有一些数据或事件,然后触发适当的输入处理程序来处理每个“就绪”的输入源。

完成后,它将返回循环,处理来自各种来源的输入,如果没有工作可做,则“休眠”。

这是一个相当高层次的描述(试图避免太多细节)。

编辑

尝试解决评论。我把它弄碎了。

  • it means that i can only access/run to run loop inside the thread right?

的确如此。 NSRunLoop 不是线程安全的,只能从运行循环的线程的上下文中访问。

  • is there any simple example how to add event to run loop?

如果你想监控一个端口,你只需将该端口添加到运行循环中,然后运行循环将监视该端口的事件。

- (void)addPort:(NSPort *)aPort forMode:(NSString *)mode

你也可以显式地添加一个定时器

- (void)addTimer:(NSTimer *)aTimer forMode:(NSString *)mode
  • what means it will then return to its loop?

运行循环将在每次迭代中处理所有就绪事件(根据其模式)。您将需要查看文档以发现有关运行模式的信息,因为这超出了一般答案的范围。

  • is run loop inactive when i start the thread?

在大多数应用程序中,主运行循环会自动运行。但是,您负责启动运行循环并响应您旋转的线程的传入事件。

  • is it possible to add some events to Thread run loop outside the thread?

我不太清楚你的意思。您不会将事件添加到运行循环中。您添加输入源和计时器源(从拥有运行循环的线程)。运行循环然后监视它们的事件。当然,您可以提供来自其他线程和进程的数据输入,但输入将由运行循环处理,该运行循环正在运行运行循环的线程上监视这些源。

  • does it mean that sometimes i can use run loop to block thread for a time

的确如此。事实上,运行循环将“停留”在事件处理程序中,直到该事件处理程序返回。您可以在任何应用程序中简单地看到这一点。为任何休眠的 IO 操作(例如,按下按钮)安装一个处理程序。在该方法完成之前,您将阻塞主运行循环(和整个 UI)。

这同样适用于任何运行循环。

我建议您阅读以下有关运行循环的文档:

https://developer.apple.com/documentation/foundation/nsrunloop

以及它们在线程中的使用方式:

https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/Multithreading/RunLoopManagement/RunLoopManagement.html#//apple_ref/doc/uid/10000057i-CH16-SW1

关于ios - 了解 NSRunLoop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21380966/

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