在 Objective-C 中重写超类方法

发布于 2024-08-09 14:52:56 字数 49 浏览 5 评论 0原文

如果 Objective-C 中的子类想要重写超类的方法,它是否也必须匹配返回类型?

If subclass in objective-c wants to override a super class's method, does it have to match the return type too?

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

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

发布评论

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

评论(2

蓝天 2024-08-16 14:52:56

是的,它必须具有相同的选择器。

更新:

IIRC 参数也需要具有相同的类型。

更新:

动态链接时,同一选择器的所有方法似乎需要在所有类中具有相同的类型,而静态链接则不然: 链接

Yes, it must have the same selector.

update:

IIRC the arguments also needs to have the same types.

update:

It seems that all methods of the same selector needs to have equivalent types across all classes when linking dynamically, not so with static linking: linky

情绪操控生活 2024-08-16 14:52:56

是的,是一样的,

但是需要注意的一件事是你需要传递返回类型的超类。

例如:

-(UIScrollview)method:(id)argument;

您也可以返回 UIview。 (简单地说返回类型的超类)。

Yes, It be same,

But one thing to be noted is you need to pass the super-class of return types.

Eg:

-(UIScrollview)method:(id)argument;

you can return UIview as well. (simply saying super class of return types).

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