Objective-Cは、Rubyのようにメソッドの定義を書き換えたりする事ができます。

objective-c>>
#import <objc/runtime.h>

id (foo_without_bar)(id, SEL);
id foo_with_bar(id self, SEL selector)
{
/
do your work here */
return foo_without_bar(self, selector);
}

// exchange method implementation
SEL fooSelector = @selector(foo);
Method method = class_getInstanceMethod(class, fooSelector);
(IMP)&foo_without_bar =
method_getImplementation(method);
method_setImplementation(method, (IMP)foo_with_bar);
<<--

この例では、IMPの定義と同じプロトタイプのメソッドを書き換えてるので不要ですが、IMPの定義と異なるプロトタイプのメソッドを書き換える場合は、
IMPにキャストする必要があります。

また、戻り値が浮動小数型であったり、サイズが大きい構造体を返すメソッドの場合は、上記の例とは異なる方法を使う必要があるので、注意が必要です。(NSInvocationを使う必要があります)

See Also

posted by genki genki on Fri 7 Nov 2008 at 11:42 with 2 comments
瀧内元気 瀧内元気 11/07 12:36
fooSelectorがfooになってたので訂正。
瀧内元気 瀧内元気 11/08 09:50
Objective-Cの流儀ではMethod Swizzlingと呼ぶらしい。
Contents rssrss
光ファイバーを二次元振動させて走査するAR用ディスプレイ
因果の取り違え
Swift2's defer for CoffeeScript
mongodb-3.0からcreateIndexのdropDupsが無くなったらしい
mongodb-3.0以降のWiredTigerの設定を動的に変更する方法
一般楕円の高速生成アルゴリズムへの道標
farro mantecatoのレシピ
Droonga関連の記事のまとめ
RuntimeErrorの特定のメッセージに限定してrescueする方法
jQueryでscriptタグを実行せずにappendする
Tags
coffeescriptdefergroongajsmemonodenodejs
Comments rssrss
https://www.prurgent.com/2026-03-18/pressrelease474408.htm https://www.prurgent.com/2026-03-18/pressrelease474408.htm: Appreciate the recommendation. Let me try it out. 04/28 13:42
https://koroshr.ir https://koroshr.ir: در کل قضیه برای کسانی که میخوان بازی انفجار ... 04/28 11:39
https://baboledu.ir https://baboledu.ir: وقت بخیر، من اخیرا به صورت کاملا تصادفی در اینترنت... 04/28 11:19
https://netfy.ir https://netfy.ir: سلام، من مدتی قبل به صورت کاملا تصادفی در فضای وب ... 04/28 09:15
https://syanor.ir https://syanor.ir: درود فراوان، خودم مدتی قبل اتفاقی در فضای وب به ای... 04/28 07:17
https://robindigital.ir https://robindigital.ir: درود، من امروز به صورت کاملا تصادفی در فضای وب ب... 04/27 20:26
https://xn--son7-01a.cc/ https://xn--son7-01a.cc/: В этом тексте собран углублённый обзор. Если по д... 04/27 19:17
https://pajooheshray.ir https://pajooheshray.ir: وقت بخیر، خودم دیروز اتفاقی در اینترنت با این وب... 04/27 16:03