美文网首页
Runloop学习

Runloop学习

作者: Django_Monstar | 来源:发表于2017-08-29 18:15 被阅读8次

苹果官方的简介:

The programmatic interface to objects that manage input sources.

为对象设计的用于管理输入源的编程接口

A NSRunLoop object processes input for sources such as mouse and keyboard events from the window system, NSPort objects,and NSConnection objects.A NSRunLoop object also processes NSTimerevents.

一个runloop可以处理各种输入源信息 包括 鼠标、键盘、通信 、网络等。一个runloop也可以处理timer事件

Your application neither creates or explicitly manages NSRunLoop objects. Each NSThread object—including the application’s main thread—has an NSRunLoop object automatically created for it as needed. If you need to access the current thread’s run loop, you do so with the class method currentRunLoop.

你不必创建或管理runloop对象,每个线程包括主线程都根据需要自动创建runloop,如果你想使用当前线程的runloop,可以通过类方法 currentRunloop获得

runloop没有初始化方法 默认就会随着线程产生

Note that from the perspective of NSRunLoop, [NSTimer
] objects are not "input"—they are a special type, and one of the things that means is that they do not cause the run loop to return when they fire.

请注意,从NSRunLoop的角度来看,NSTimer对象不是“输入”——是一种特殊类型,runloop不会因为timer开启而返回

常见问题:轮播时timer失效

NSTimer 默认的NSTimer为NSDefaultRunLoopMode,在轮播时触摸屏幕,NSTimer会失效,系统优先响应UI事件,如果想NSTimer正常运行需要改为UITrackingRunLoopMode或者NSRunLoopCommonModes(两种模式)

总结ibireme博客的笔记

RunLoop.png

相关文章

  • IOS runloop 学习笔记

    这次学习 的内容是 runloop 1.runloop 是什么2.runloop 的作用3.runloop 和 线...

  • RunLoop学习资料

    非常好的runloop学习系列 CoreFoundation源码 RunLoop系列之源码分析 关于Runloop...

  • NSRunLoop

    前言 RunLoop的初期学习总结,后续会持续研究更新。 一、Runloop定义及作用 1. 什么是Runloop...

  • RunLoop学习总结

    通过以下文章学习记录 关于Runloop的原理探究及基本使用 深入理解RunLoop RunLoop完全指南 Ru...

  • RunLoop-基础概念(初识篇)

    学习这篇内容主要讲解RunLoop的概念,以及RunLoop和线程之间的关系。当然提及RunLoop也离不开Aut...

  • Runloop学习

    Runloop学习 | 目录 ||: ------------- || 1 什么是...

  • RunLoop学习

    RunLoop概念 人如其名,RunLoooooooooooooooop,像是一个死循环,不停的跑圈,永不懈怠。除...

  • Runloop学习

    深入理解RunLoop | Garan no dou

  • RunLoop学习

    读这篇Blog:https://blog.ibireme.com/2015/05/18/runloop/ 收货比较...

  • Runloop学习

    苹果官方的简介: The programmatic interface to objects that manag...

网友评论

      本文标题:Runloop学习

      本文链接:https://www.haomeiwen.com/subject/plkadxtx.html