Obj-C 内省:方法如何引用自己的选择器?

发布于 2024-12-20 03:03:43 字数 223 浏览 1 评论 0原文

我希望编写一个宏,在任何方法中使用,它引用该方法的选择器。我不想传递方法的字面名称。例如:

#define RERUN [self performSelector:{something} withObject:nil afterDelay: 0.0]

上面的“{something}”将解析为使用宏的任何方法的选择器。

有什么方法可以做到这一点吗?

I wish to write a macro, to be used within any method, which references the method's selector. I do not wish to pass the literal name of the method. For example:

#define RERUN [self performSelector:{something} withObject:nil afterDelay: 0.0]

where the "{something}" in the above would resolve to the selector of whatever method the macro was used in.

Is there some way to do this?

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

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

发布评论

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

评论(2

浅忆 2024-12-27 03:03:43

_cmd 表示当前方法的选择器——它是一个隐藏参数(如 self)。

如果你从不需要参数,或者 nil 适合你的目的 - 你需要做的就是写:

#define RERUN [self performSelector:_cmd]

_cmd represents the selector of the current method -- it is a hidden argument (like self).

if you never need arguments, or nil is suitable for your purpose - all you need to do is write:

#define RERUN [self performSelector:_cmd]
羁拥 2024-12-27 03:03:43

方法获取一个隐式参数 _cmd,它是选择器。

Methods get an implicit argument _cmd, which is the selector.

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