如何从 Objective-C 调用使用 class_getInstanceMethod 保存的方法?

发布于 2024-11-16 09:56:30 字数 231 浏览 3 评论 0原文

如何调用我之前使用以下代码保存的方法:

SEL sel = @selector(someMethod:param:);
Method myMethod = class_getInstanceMethod([SomeClass class], sel);

正如您所想,调用 [SomeClass someMethod] 不起作用,因为稍后我会混合原始方法。

How do I call a method that I previously saved using the code below:

SEL sel = @selector(someMethod:param:);
Method myMethod = class_getInstanceMethod([SomeClass class], sel);

As you may imagine, calling [SomeClass someMethod] is not going to work because, later, I swizzle the original method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瞎闹 2024-11-23 09:56:30

您需要将指针类型转换为正确的函数类型,请记住方法有两个隐式参数:self 和 _cmd。来自Apple的 运行时文档:(

void (*setter)(id, SEL, BOOL);

int i;

setter = (void (*)(id, SEL, BOOL))[target methodForSelector:@selector(setFilled:)];

for ( i = 0; i < 1000, i++ )
    setter(targetList[i], @selector(setFilled:), YES);

编辑

保留请记住,Method 类型是一个结构体,并且在 ObjC2 运行时中,它是不透明的,因此您无法直接访问其成员 - 您需要使用 method_getImplementation(myMethod) 来获取您可以像上面那样进行类型转换的 IMP。

You need to typecast the pointer to the proper function type, keeping in mind that methods have two implicit arguments, self and _cmd. From Apple's runtime docs:

void (*setter)(id, SEL, BOOL);

int i;

setter = (void (*)(id, SEL, BOOL))[target methodForSelector:@selector(setFilled:)];

for ( i = 0; i < 1000, i++ )
    setter(targetList[i], @selector(setFilled:), YES);

(Edit)

Keep in mind that the Method type is a struct, and in the ObjC2 runtime, it's opaque, so you don't have direct access to its members - you'll need to use method_getImplementation(myMethod) to get an IMP that you can typecast like above.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文