如何从被调用的方法实现创建 NSInitation?

发布于 2024-12-23 01:13:53 字数 394 浏览 1 评论 0原文

我有一个如下所示的函数:

void myMethodImpl(id self, SEL _cmd, ...)

我使用它作为类上方法的实现,

class_addMethod(aClass, aSelector, (IMP)myMethodImpl, types);

因此当使用选择器 aSelector 将消息发送到 aClass 时,将调用 myMethodImpl 。现在我想使用 myMethodImpl 中的所有参数创建一个 NSInitation。

有没有一种简单的方法可以从参数列表创建 NSInitation,或者我是否必须检查每个元素的类型并相应地添加它?

I have a function that looks like this:

void myMethodImpl(id self, SEL _cmd, ...)

I use this as a implementation for a method on a class

class_addMethod(aClass, aSelector, (IMP)myMethodImpl, types);

so myMethodImpl get's called when a message is sent to aClass with selector aSelector. Now there I'd like to create an NSInvocation with all parameters from myMethodImpl.

Is there an easy way to create a NSInvocation from the parameter list or do I have to check every element for it's type and add it accordingly?

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

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

发布评论

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

评论(3

回心转意 2024-12-30 01:13:53

既然您要向类添加方法,为什么不添加/调整 forwardInitation: 呢?那时,运行时将很好地为您构建一个调用。

Since you're adding a method to the class, why not add/swizzle forwardInvocation: instead? At that point the runtime will have nicely built an invocation for you.

初吻给了烟 2024-12-30 01:13:53

这是不可能的。简单的谷歌搜索显示这篇文章:

http:// /www.wincent.com/a/about/wincent/weblog/archives/2006/03/nsin Vocation_an.php

这清楚地解释了va_args不能正确使用 NSInspiration。

This is not possible. A simple google search shows this article:

http://www.wincent.com/a/about/wincent/weblog/archives/2006/03/nsinvocation_an.php

Which clearly explains how va_args don't properly work with NSInvocation.

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