有没有办法获取类的工厂实例?

发布于 2024-10-16 22:47:38 字数 101 浏览 2 评论 0原文

我想使用 Objective-C 运行时来调用工厂对象上的 objc_msgSend() ,并且我需要构建它的参数。我想像编译器一样使用工厂实例指定它的第一个参数。有没有办法获取工厂实例?

I would like to use the Objective-C runtime to call objc_msgSend() on a factory object and I need to build its arguments. I would like to specify its first argument using the factory instance as a compiler would. Is there a way to obtain the factory instance?

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

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

发布评论

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

评论(2

失与倦" 2024-10-23 22:47:38

objc_getClass() 是提供工厂对象实例的函数,正如我的问题标题所要求的那样。

objc_getClass() is the function that provides the factory object instance as my question heading asks.

一笑百媚生 2024-10-23 22:47:38

在类 MyClass 的实现中,可以通过以下方式获得超类:

Class superClass=[MyClass superclass];

您可以将其放入 objc_super 结构中。请注意,编译器不会创建类的任何实例...编译器使用类对象,它是元类的实例。有关详细信息,请阅读Hamster Emporium 上的这篇文章

Within an implementation of a class MyClass, the superclass can be obtained by

Class superClass=[MyClass superclass];

You can put that into objc_super structure. Note that the compiler doesn't make any instance of a class... the compiler uses a class object, which is an instance of the metaclass. For more information read this post at Hamster Emporium.

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