Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我非常喜欢以下threadDictionary属性NSThread:非常方便地存储具有每个线程所有权的东西。
threadDictionary
NSThread
GCD队列是否有等效的字典?
如果您可以针对 iOS 5 及更高版本,您可以使用dispatch_queue_get[set]_specific()它允许您将字典样式(即键控)值添加到队列中。我在它们上面找不到文档页面,奇怪的是,但它们在queue.h
dispatch_queue_get[set]_specific()
queue.h
你可能想调查一下dispatch_set_context/dispatch_get_context。此处和此处的文档。您必须管理上下文,但它可能是您正在寻找的。
dispatch_set_context/dispatch_get_context