load
class
aが obj-c ランタイムに追加されたときに呼び出されます。
https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/#//apple_ref/occ/clm/NSObject/load
したがって、UIViewController
すでに含まれている obj-c ランタイムに a が追加されviewWillAppear:
たが、それを別の実装に置き換えたいとします。まず、新しいメソッドを追加しますxxxWillAppear:
。一度クラスにxxxWillAppear:
追加されViewController
たら、それを置き換えることができます。
しかし、著者は次のようにも述べています。
たとえば、iOS アプリで各ビュー コントローラーがユーザーに提示された回数を追跡したいとします。
ViewController
そのため、彼は、アプリに多くのビュー コントローラーが含まれる可能性があるが、viewWillAppear:
実装ごとに置き換え続けたくないケースを実証しようとしています。の点viewWillAppear:
が置き換えられたら、追加する代わりに、交換のみを行う必要があります。
おそらく、Objective C ランタイムのソース コードが役立つかもしれません。
/**********************************************************************
* addMethod
* fixme
* Locking: runtimeLock must be held by the caller
**********************************************************************/
static IMP
addMethod(Class cls, SEL name, IMP imp, const char *types, BOOL replace)
{
IMP result = nil;
rwlock_assert_writing(&runtimeLock);
assert(types);
assert(cls->isRealized());
method_t *m;
if ((m = getMethodNoSuper_nolock(cls, name))) {
// already exists
if (!replace) {
result = _method_getImplementation(m);
} else {
result = _method_setImplementation(cls, m, imp);
}
} else {
// fixme optimize
method_list_t *newlist;
newlist = (method_list_t *)_calloc_internal(sizeof(*newlist), 1);
newlist->entsize_NEVER_USE = (uint32_t)sizeof(method_t) | fixed_up_method_list;
newlist->count = 1;
newlist->first.name = name;
newlist->first.types = strdup(types);
if (!ignoreSelector(name)) {
newlist->first.imp = imp;
} else {
newlist->first.imp = (IMP)&_objc_ignored_method;
}
attachMethodLists(cls, &newlist, 1, NO, NO, YES);
result = nil;
}
return result;
}
BOOL
class_addMethod(Class cls, SEL name, IMP imp, const char *types)
{
if (!cls) return NO;
rwlock_write(&runtimeLock);
IMP old = addMethod(cls, name, imp, types ?: "", NO);
rwlock_unlock_write(&runtimeLock);
return old ? NO : YES;
}
IMP
class_replaceMethod(Class cls, SEL name, IMP imp, const char *types)
{
if (!cls) return nil;
rwlock_write(&runtimeLock);
IMP old = addMethod(cls, name, imp, types ?: "", YES);
rwlock_unlock_write(&runtimeLock);
return old;
}
必要に応じて、さらに掘り下げることができます。
http://www.opensource.apple.com/source/objc4/objc4-437/