#####1. Run Loops in Cocoa
- Foundation: NSRunLoop
- Core Foundation: CFRunLoop 核心部分,代码开源,C 语言编写,跨平台
#####2. 关系密切的类、扩展等等
- NSTimer, UIEvent, Autorelease,
#####1. Run Loops in Cocoa
#####2. 关系密切的类、扩展等等
| // Taken from the commercial iOS PDF framework http://pspdfkit.com. | |
| // Copyright (c) 2014 Peter Steinberger, PSPDFKit GmbH. All rights reserved. | |
| // Licensed under MIT (http://opensource.org/licenses/MIT) | |
| // | |
| // You should only use this in debug builds. It doesn't use private API, but I wouldn't ship it. | |
| // PLEASE DUPE rdar://27192338 (https://openradar.appspot.com/27192338) if you would like to see this in UIKit. | |
| #import <objc/runtime.h> | |
| #import <objc/message.h> |