iOS-RunLoop
文章平均质量分 87
opentogether
给自己一个目标,让生命为他燃烧
展开
-
也来谈谈CFRunLoop(NSRunLoop)(含demo)
也来谈谈CFRunLoop(NSRunLoop)(含demo)转载 2016-09-01 10:25:54 · 532 阅读 · 0 评论 -
- (void)performSelector:(SEL)aSelector withObject:(nullable id)anArgument afterDelay:(NSTimeInterval
一、文档原文 Description: Invokes a method of the receiver on the current thread using the default mode after a delay. This method sets up a timer to perform the aSelectormessage on the current th原创 2016-10-04 11:41:40 · 1888 阅读 · 0 评论 -
iOS app性能优化的那些事(二)
这次我们来说说iOS app中滑动的那些事。iOS为了提高滑动的流畅感,特意在滑动的时候将runloop模式切换到UITrackingRunLoopMode,在这个过程中专心做跟滑动相关的工作,这也就是在滑动过程中为什么nstimer无法工作的原因,因为两个没在同一mode下面。但我们可能经常会遇到滑动不怎么流畅的情况,比如在项目中碰到在滑动tableview的时候不怎么顺畅,感觉有点不爽,即便是转载 2016-09-30 15:21:27 · 549 阅读 · 0 评论 -
iOS Runloop学习
iOS Runloop学习转载 2016-09-06 18:59:52 · 489 阅读 · 0 评论 -
ios中runtime和runloop 的区别
ios中runtime和runloop 的区别转载 2016-09-06 10:44:07 · 1791 阅读 · 0 评论 -
RunLoop邮局理论
RunLoop, 邮局理论转载 2016-09-06 10:16:48 · 315 阅读 · 0 评论 -
从安卓的Looper到iOS的RunLoop
从安卓的Looper到iOS的RunLoop转载 2016-09-05 11:15:58 · 647 阅读 · 0 评论 -
iOS中的RunLoop 和 android 中的Looper
iOS中的RunLoop 和 android 中的Looper转载 2016-09-05 11:12:20 · 572 阅读 · 0 评论 -
Runloop--Configuring Run Loop Sources (配置 Runloop 的源)(含demo)
Runloop--Configuring Run Loop Sources (配置 Runloop 的源)(含demo)转载 2016-09-01 16:20:33 · 1350 阅读 · 1 评论 -
iOS开发笔记--Run Loops(简洁版)
iOS开发笔记--Run Loops(简洁版)转载 2016-09-01 15:31:24 · 314 阅读 · 0 评论 -
Run loop observer的使用(含demo)
Run loop observer的使用(含demo)转载 2016-09-01 14:52:30 · 638 阅读 · 0 评论 -
GCD实现多个定时器,完美避过NSTimer的三大缺陷(RunLoop、Thread、Leaks)
https://www.cnblogs.com/beckwang0912/p/7027484.html 定时器在我们每个人做的iOS项目里面必不可少,如登录页面倒计时、支付期限倒计时等等,一般来说使用NSTimer创建定时器: But 使用NSTimer需要注意一下几点: 1、必须保证有一个活跃的RunLoop。 系统框架提供了几种创建NSTimer的...转载 2019-02-23 22:17:22 · 630 阅读 · 0 评论