- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在 NSHipter 关于 method swizzling 的文章中,它说“Swizzling 应该总是在 dispatch_once 中完成。”为什么这是必要的,因为 +load 每个类只发生一次?
最佳答案
这不是必需的。 +load
保证线程安全和可重入。请参阅 objc-runtime-new.mm
中的 load_images
:
/***********************************************************************
* load_images
* Process +load in the given images which are being mapped in by dyld.
* Calls ABI-agnostic code after taking ABI-specific locks.
*
* Locking: write-locks runtimeLock and loadMethodLock
**********************************************************************/
const char *
load_images(enum dyld_image_states state, uint32_t infoCount,
const struct dyld_image_info infoList[])
{
BOOL found;
recursive_mutex_lock(&loadMethodLock);
// Discover load methods
rwlock_write(&runtimeLock);
found = load_images_nolock(state, infoCount, infoList);
rwlock_unlock_write(&runtimeLock);
// Call +load methods (without runtimeLock - re-entrant)
if (found) {
call_load_methods();
}
recursive_mutex_unlock(&loadMethodLock);
return nil;
}
注意递归互斥锁,它保证所有加载都在阻塞时完成,call_load_methods()
将确保 +load 每次 +load
的实现只被调用一次.
请注意 +load
的特殊之处在于它可以在每个类的基础上有多个实现,这也是为什么它更适合 swizzling 的原因之一 - 你的 +load
,以及原来的+load
保证被调用。
奖励:这是关于 call_load_methods()
的相关文档,它直接说明了为什么这是线程安全的:
/***********************************************************************
* call_load_methods
* Call all pending class and category +load methods.
* Class +load methods are called superclass-first.
* Category +load methods are not called until after the parent class's +load.
*
* This method must be RE-ENTRANT, because a +load could trigger
* more image mapping. In addition, the superclass-first ordering
* must be preserved in the face of re-entrant calls. Therefore,
* only the OUTERMOST call of this function will do anything, and
* that call will handle all loadable classes, even those generated
* while it was running.
*
* The sequence below preserves +load ordering in the face of
* image loading during a +load, and make sure that no
* +load method is forgotten because it was added during
* a +load call.
* Sequence:
* 1. Repeatedly call class +loads until there aren't any more
* 2. Call category +loads ONCE.
* 3. Run more +loads if:
* (a) there are more classes to load, OR
* (b) there are some potential category +loads that have
* still never been attempted.
* Category +loads are only run once to ensure "parent class first"
* ordering, even if a category +load triggers a new loadable class
* and a new loadable category attached to that class.
*
* Locking: loadMethodLock must be held by the caller
* All other locks must not be held.
**********************************************************************/
void call_load_methods(void)
关于objective-c - 在方法调配中使用 dispatch_once,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29435788/
我调配 NSMutableArray addObject 失败了。代码如下: Method ori_Mehtod = class_getInstanceMethod([self class], @se
我的问题不是关于如何调配,而是这个特定代码片段中发生了什么: private let swizzling: (UIViewController.Type) -> () = { viewControll
我正在 MKMapView 和 UIScrollView 上调配 initWithFrame: 和 dealloc,以添加和删除通知监听器以监视与外部设备的连接,以便我可以为这些 View 连接其他手
我正在使用 AmazonElasticMapReduceAsyncClientBuilder 为实例组设置自动扩展策略。 当我执行 aws emr describe-cluster --cluster
我是一名优秀的程序员,十分优秀!